{ "cells": [ { "cell_type": "markdown", "id": "b650d739", "metadata": {}, "source": [ "# EVM Blockexplorer API Tutorial" ] }, { "cell_type": "markdown", "id": "90d1e1be", "metadata": {}, "source": [ "This tutorial aims to be a quick guide to get you started using the Etherscan API integrated into messari's python library." ] }, { "cell_type": "code", "execution_count": 2, "id": "4f68f0a5", "metadata": {}, "outputs": [], "source": [ "import time #need to sleep to stop rate limiting\n", "#from messari.blockexplorers.etherscan import Etherscan\n", "from messari.blockexplorers import Etherscan\n", "API_KEY='your_api_key'\n", "es = Etherscan(api_key=API_KEY)" ] }, { "cell_type": "markdown", "id": "4e241116", "metadata": {}, "source": [ "## API Structure\n", "The Deep DAO Python client contains a number of functions that wrap some of Deep DAO's API endpoints. These include:\n", "\n", "Accounts\n", "\n", "* get_account_ether_balance\n", "* get_account_normal_transactions\n", "* get_account_internal_transactions\n", "* get_transaction_internal_transactions\n", "* get_block_range_internal_transactions\n", "* get_account_token_transfers\n", "* get_account_nft_transfers\n", "* get_account_blocks_mined\n", "\n", "Contracts\n", "\n", "* get_contract_abi\n", "* get_contract_source_code\n", "\n", "Transactions\n", "\n", "* get_contract_execution_status\n", "* get_transaction_execution_status\n", "\n", "Blocks\n", "\n", "* get_block_reward\n", "* get_block_countdown\n", "* get_block_by_timestamp\n", "\n", "Logs\n", "\n", "* get_logs\n", "\n", "Geth/Parity Proxy\n", "\n", "* get_eth_block_number\n", "* get_eth_block\n", "* get_eth_uncle\n", "* get_eth_block_transaction_count\n", "* get_eth_transaction_by_hash\n", "* get_eth_transaction_by_block_index\n", "* get_eth_account_transaction_count\n", "* get_eth_transaction_reciept\n", "* get_eth_gas_price\n", "\n", "Tokens\n", "\n", "* get_token_total_supply\n", "* get_token_account_balance\n", "\n", "Gas Tracker\n", "\n", "* get_est_confirmation\n", "* get_gas_oracle\n", "\n", "Stats\n", "\n", "* get_total_eth_supply\n", "* get_total_eth2_supply\n", "* get_last_eth_price\n", "* get_nodes_size\n", "* get_total_nodes_count\n", "\n", "Below are a few examples to showcase the functionality and types of data each function generates." ] }, { "cell_type": "markdown", "id": "edbe602f", "metadata": {}, "source": [ "## Accounts" ] }, { "cell_type": "markdown", "id": "2f68ecd9", "metadata": {}, "source": [ "Functions to return info about given account(s)" ] }, { "cell_type": "code", "execution_count": 2, "id": "625f06f1", "metadata": {}, "outputs": [], "source": [ "accounts = ['0xBa19BdFF99065d9ABF3dF8CE942390B97fd71B12', '0x503e4bfe8299D486701BC7bc7F2Ea94f50035daC']\n", "txns = ['0x29f2df8ce6a0e2a93bddacdfcceb9fd847630dcd1d25ad1ec3402cc449fa1eb6', '0x0bd7f9af4f8ddb18a321ab0120a2389046b39feb67561d17378e0d4dc062decc', '0x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787e341eea230614e49ff61']\n", "tokens = ['0x1f9840a85d5af5bf1d1762f925bdaddc4201f984', '0xc18360217d8f7ab5e7c516566761ea12ce7f9d72']" ] }, { "cell_type": "markdown", "id": "9817299a", "metadata": {}, "source": [ "### get_account_ether_balance" ] }, { "cell_type": "markdown", "id": "8bae3b46", "metadata": {}, "source": [ "Returns the Ether (wei) balance of a given address" ] }, { "cell_type": "code", "execution_count": 3, "id": "34261fa3", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
balances
0xBa19BdFF99065d9ABF3dF8CE942390B97fd71B12976947792508781600
0x503e4bfe8299D486701BC7bc7F2Ea94f50035daC2239319013287287
\n", "
" ], "text/plain": [ " balances\n", "0xBa19BdFF99065d9ABF3dF8CE942390B97fd71B12 976947792508781600\n", "0x503e4bfe8299D486701BC7bc7F2Ea94f50035daC 2239319013287287" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "account_balances = es.get_account_native_balance(accounts)\n", "time.sleep(1)\n", "account_balances" ] }, { "cell_type": "markdown", "id": "043c28fd", "metadata": {}, "source": [ "### get_account_normal_transactions" ] }, { "cell_type": "markdown", "id": "51ed8f66", "metadata": {}, "source": [ "Returns the list of transactions performed by an address, with optional pagination" ] }, { "cell_type": "code", "execution_count": 4, "id": "93d52ff6", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
0xBa19BdFF99065d9ABF3dF8CE942390B97fd71B12...0x503e4bfe8299D486701BC7bc7F2Ea94f50035daC
blockNumbertimeStamphashnonceblockHashtransactionIndexfromtovaluegas...valuegasgasPriceisErrortxreceipt_statusinputcontractAddresscumulativeGasUsedgasUsedconfirmations
01215045816172381730x1d3e049fcaeb7e02dbd1c796852fd2a0accb584eb621...340xc5a9897f311d4310e0d6701ed50d24d81640a96fa54b...1130x503e4bfe8299d486701bc7bc7f2ea94f50035dac0xba19bdff99065d9abf3df8ce942390b97fd71b1215000000000000000021000...20000000000000000021000100000000000010x12485187210001766673
11215049916172386630x7be0198fc6afc4227aa63eed7b04e3c2e1cb845f77b7...100x32b9419d095d0d6031498dac7b86844536db45b210be...1610xe35e8e145745df95d38d2ae1d2091c9097962e0d0xba19bdff99065d9abf3df8ce942390b97fd71b1215000000000000000021000...170000000000000000170000122200966918010x7ff36ab5000000000000000000000000000000000000...22204341247711766661
21215053416172390680xfc70483d8711be918fbf2b78d37d27ec46c7dc7338dc...00xa70a5f5aaf4d389b9c6150b850a20041077c7ff757c0...420xba19bdff99065d9abf3df8ce942390b97fd71b120x4678f0a6958e4d2bc4f1baf7bc52e8f3564f3fe40918027...100000000000000000021000117000000000010x11686985210001766520
31215054716172391780x409ddb1a7f518fef0d1225e118166cc05c7cd28e369a...10x7c2c028e6c4dfbdaaf9364c75a10efc92a4a7e1168bb...440xba19bdff99065d9abf3df8ce942390b97fd71b120x2260fac5e5542a773aa44fbcfedf7c193bc2c599070165...990000000000000000170000124772370792010x7ff36ab5000000000000000000000000000000000000...3162001097711766494
41215059116172398810x091bfeb699eb8822e68b7c572a458e72cd5bd23b8e53...120x5dfd2dc6544b3928053da118dd744159c77785d42792...1050xe35e8e145745df95d38d2ae1d2091c9097962e0d0xba19bdff99065d9abf3df8ce942390b97fd71b1210000000000000000021000...490000000000000000021000115000000000010x8774834210001754228
\n", "

5 rows × 36 columns

\n", "
" ], "text/plain": [ " 0xBa19BdFF99065d9ABF3dF8CE942390B97fd71B12 \\\n", " blockNumber timeStamp \n", "0 12150458 1617238173 \n", "1 12150499 1617238663 \n", "2 12150534 1617239068 \n", "3 12150547 1617239178 \n", "4 12150591 1617239881 \n", "\n", " \\\n", " hash nonce \n", "0 0x1d3e049fcaeb7e02dbd1c796852fd2a0accb584eb621... 34 \n", "1 0x7be0198fc6afc4227aa63eed7b04e3c2e1cb845f77b7... 10 \n", "2 0xfc70483d8711be918fbf2b78d37d27ec46c7dc7338dc... 0 \n", "3 0x409ddb1a7f518fef0d1225e118166cc05c7cd28e369a... 1 \n", "4 0x091bfeb699eb8822e68b7c572a458e72cd5bd23b8e53... 12 \n", "\n", " \\\n", " blockHash transactionIndex \n", "0 0xc5a9897f311d4310e0d6701ed50d24d81640a96fa54b... 113 \n", "1 0x32b9419d095d0d6031498dac7b86844536db45b210be... 161 \n", "2 0xa70a5f5aaf4d389b9c6150b850a20041077c7ff757c0... 42 \n", "3 0x7c2c028e6c4dfbdaaf9364c75a10efc92a4a7e1168bb... 44 \n", "4 0x5dfd2dc6544b3928053da118dd744159c77785d42792... 105 \n", "\n", " \\\n", " from \n", "0 0x503e4bfe8299d486701bc7bc7f2ea94f50035dac \n", "1 0xe35e8e145745df95d38d2ae1d2091c9097962e0d \n", "2 0xba19bdff99065d9abf3df8ce942390b97fd71b12 \n", "3 0xba19bdff99065d9abf3df8ce942390b97fd71b12 \n", "4 0xe35e8e145745df95d38d2ae1d2091c9097962e0d \n", "\n", " \\\n", " to value gas \n", "0 0xba19bdff99065d9abf3df8ce942390b97fd71b12 150000000000000000 21000 \n", "1 0xba19bdff99065d9abf3df8ce942390b97fd71b12 150000000000000000 21000 \n", "2 0x4678f0a6958e4d2bc4f1baf7bc52e8f3564f3fe4 0 918027 \n", "3 0x2260fac5e5542a773aa44fbcfedf7c193bc2c599 0 70165 \n", "4 0xba19bdff99065d9abf3df8ce942390b97fd71b12 100000000000000000 21000 \n", "\n", " ... 0x503e4bfe8299D486701BC7bc7F2Ea94f50035daC \\\n", " ... value gas gasPrice \n", "0 ... 200000000000000000 21000 100000000000 \n", "1 ... 170000000000000000 170000 122200966918 \n", "2 ... 1000000000000000000 21000 117000000000 \n", "3 ... 990000000000000000 170000 124772370792 \n", "4 ... 4900000000000000000 21000 115000000000 \n", "\n", " \\\n", " isError txreceipt_status input \n", "0 0 1 0x \n", "1 0 1 0x7ff36ab5000000000000000000000000000000000000... \n", "2 0 1 0x \n", "3 0 1 0x7ff36ab5000000000000000000000000000000000000... \n", "4 0 1 0x \n", "\n", " \n", " contractAddress cumulativeGasUsed gasUsed confirmations \n", "0 12485187 21000 1766673 \n", "1 2220434 124771 1766661 \n", "2 11686985 21000 1766520 \n", "3 316200 109771 1766494 \n", "4 8774834 21000 1754228 \n", "\n", "[5 rows x 36 columns]" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "account_normal = es.get_account_normal_transactions(accounts)\n", "time.sleep(1)\n", "account_normal.head()" ] }, { "cell_type": "markdown", "id": "234050c8", "metadata": {}, "source": [ "### get_account_internal_transactions" ] }, { "cell_type": "markdown", "id": "251a5271", "metadata": {}, "source": [ "Returns the list of internal transactions performed by an address, with optional pagination" ] }, { "cell_type": "code", "execution_count": 5, "id": "3f8a22c1", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
0xBa19BdFF99065d9ABF3dF8CE942390B97fd71B12...0x503e4bfe8299D486701BC7bc7F2Ea94f50035daC
blockNumbertimeStamphashfromtovaluecontractAddressinputtypegas...tovaluecontractAddressinputtypegasgasUsedtraceIdisErrorerrCode
01216333516174095970x68141c1316d922ed5113e265a5d636f1ec6b090e7ea7...0x283af0b28c62c092c9727f1ee09c02ca627eb7f50xba19bdff99065d9abf3df8ce942390b97fd71b121132216169560432call2300...0x503e4bfe8299d486701bc7bc7f2ea94f50035dac1378007072137347call23000100
11229051916191009670x82785446d28889f99d95139610abc5bdd0362be3f302...0xe68fff06277508259b1229d284120488d4ded3900xba19bdff99065d9abf3df8ce942390b97fd71b12195917915000000000call9445...0x503e4bfe8299d486701bc7bc7f2ea94f50035dac1269277206626259375call44313020
21235834816200065830xd86114bde57cd4587d98ca24be129299a3d29d60bca7...0x0f92496ff3997d8911b42dc87cd71c29493c2efa0xba19bdff99065d9abf3df8ce942390b97fd71b121500000000000000000call2300...0x503e4bfe8299d486701bc7bc7f2ea94f50035dac924987209833558520call17389040
31236157916200494730xec5a0beb745af0dc51f85c767f5267308501c991091a...0x7a250d5630b4cf539739df2c5dacb4c659f2488d0xba19bdff99065d9abf3df8ce942390b97fd71b121000000000000000000call26093...0x503e4bfe8299d486701bc7bc7f2ea94f50035dac2915551216325263181call2984600_40
41236193116200540410xcffe026fe4efb0d0fbb71ef0a23f756d33d41878e2fb...0x1db681925786441ba82adefac7bf492089665ca00xba19bdff99065d9abf3df8ce942390b97fd71b12632281841566148913call2300...0x503e4bfe8299d486701bc7bc7f2ea94f50035dac1124184601060627798call2300000
\n", "

5 rows × 28 columns

\n", "
" ], "text/plain": [ " 0xBa19BdFF99065d9ABF3dF8CE942390B97fd71B12 \\\n", " blockNumber timeStamp \n", "0 12163335 1617409597 \n", "1 12290519 1619100967 \n", "2 12358348 1620006583 \n", "3 12361579 1620049473 \n", "4 12361931 1620054041 \n", "\n", " \\\n", " hash \n", "0 0x68141c1316d922ed5113e265a5d636f1ec6b090e7ea7... \n", "1 0x82785446d28889f99d95139610abc5bdd0362be3f302... \n", "2 0xd86114bde57cd4587d98ca24be129299a3d29d60bca7... \n", "3 0xec5a0beb745af0dc51f85c767f5267308501c991091a... \n", "4 0xcffe026fe4efb0d0fbb71ef0a23f756d33d41878e2fb... \n", "\n", " \\\n", " from \n", "0 0x283af0b28c62c092c9727f1ee09c02ca627eb7f5 \n", "1 0xe68fff06277508259b1229d284120488d4ded390 \n", "2 0x0f92496ff3997d8911b42dc87cd71c29493c2efa \n", "3 0x7a250d5630b4cf539739df2c5dacb4c659f2488d \n", "4 0x1db681925786441ba82adefac7bf492089665ca0 \n", "\n", " \\\n", " to value \n", "0 0xba19bdff99065d9abf3df8ce942390b97fd71b12 1132216169560432 \n", "1 0xba19bdff99065d9abf3df8ce942390b97fd71b12 195917915000000000 \n", "2 0xba19bdff99065d9abf3df8ce942390b97fd71b12 1500000000000000000 \n", "3 0xba19bdff99065d9abf3df8ce942390b97fd71b12 1000000000000000000 \n", "4 0xba19bdff99065d9abf3df8ce942390b97fd71b12 632281841566148913 \n", "\n", " ... \\\n", " contractAddress input type gas ... \n", "0 call 2300 ... \n", "1 call 9445 ... \n", "2 call 2300 ... \n", "3 call 26093 ... \n", "4 call 2300 ... \n", "\n", " 0x503e4bfe8299D486701BC7bc7F2Ea94f50035daC \\\n", " to value \n", "0 0x503e4bfe8299d486701bc7bc7f2ea94f50035dac 1378007072137347 \n", "1 0x503e4bfe8299d486701bc7bc7f2ea94f50035dac 1269277206626259375 \n", "2 0x503e4bfe8299d486701bc7bc7f2ea94f50035dac 924987209833558520 \n", "3 0x503e4bfe8299d486701bc7bc7f2ea94f50035dac 2915551216325263181 \n", "4 0x503e4bfe8299d486701bc7bc7f2ea94f50035dac 1124184601060627798 \n", "\n", " \n", " contractAddress input type gas gasUsed traceId isError errCode \n", "0 call 2300 0 10 0 \n", "1 call 44313 0 2 0 \n", "2 call 17389 0 4 0 \n", "3 call 29846 0 0_4 0 \n", "4 call 2300 0 0 0 \n", "\n", "[5 rows x 28 columns]" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "account_internal = es.get_account_internal_transactions(accounts)\n", "time.sleep(1)\n", "account_internal.head()" ] }, { "cell_type": "markdown", "id": "8547ea50", "metadata": {}, "source": [ "### get_transaction_internal_transactions" ] }, { "cell_type": "markdown", "id": "d1cc8b62", "metadata": {}, "source": [ "Returns the list of internal transactions performed within a transaction" ] }, { "cell_type": "code", "execution_count": 6, "id": "4026fda1", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
0x40eb908387324f2b575b4879cd9d7188f69c8fc9d87c901b9e2daaea4b442170
blockNumbertimeStampfromtovaluecontractAddressinputtypegasgasUsedisErrorerrCode
0174305914664894980x2cac6e4b11d6b58f6d3c1c9d5fe8faa89f60e5a20x66a1c3eaf0f1ffc28d209c0763ed0ca614f3b0027106740000000000call230000
\n", "
" ], "text/plain": [ " 0x40eb908387324f2b575b4879cd9d7188f69c8fc9d87c901b9e2daaea4b442170 \\\n", " blockNumber \n", "0 1743059 \n", "\n", " \\\n", " timeStamp from \n", "0 1466489498 0x2cac6e4b11d6b58f6d3c1c9d5fe8faa89f60e5a2 \n", "\n", " \\\n", " to value \n", "0 0x66a1c3eaf0f1ffc28d209c0763ed0ca614f3b002 7106740000000000 \n", "\n", " \n", " contractAddress input type gas gasUsed isError errCode \n", "0 call 2300 0 0 " ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "int_txn = '0x40eb908387324f2b575b4879cd9d7188f69c8fc9d87c901b9e2daaea4b442170'\n", "transaction_internals = es.get_transaction_internal_transactions(int_txn)\n", "time.sleep(1)\n", "transaction_internals" ] }, { "cell_type": "markdown", "id": "eedad693", "metadata": {}, "source": [ "### get_block_range_internal_transactions" ] }, { "cell_type": "markdown", "id": "e0550e46", "metadata": {}, "source": [ "Returns the list of internal transactions performed within a block range, with optional pagination" ] }, { "cell_type": "code", "execution_count": 7, "id": "e3efa670", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
blockNumbertimeStamphashfromtovaluecontractAddressinputtypegasgasUsedtraceIdisErrorerrCode
01000000015885985330xc2f74145a896b6a5b938216d130f5c382d3d77d5d501...0xf0542ed44d268c85875b3b84b0e7ce0773e9aeef0x35e4876102389f13d78381d317ff4612412a56c950000000000000000call2300000
11000000015885985330xa9b04ff42f93868886c1258ba59967ceb6aafa011865...0x8a91c9a16cd62693649d80afa85a09dbbdcb850800xbce5fe052b25e422550f6012fdd1941f9353f001create14996966477900
21000000015885985330xc96ee63d87a2d21b1dccff4d3de50726887cadbf010c...0x8a91c9a16cd62693649d80afa85a09dbbdcb850800x1f52775214e2b3d099eb82b6e9e9025c490157adcreate18771966477900
31000000015885985330x46a9ce0dbc787533c6bda878ff3c4f2354b86301bf4f...0x8a91c9a16cd62693649d80afa85a09dbbdcb850800x2858e866c5fdcefea13bedf13948a785b5c8b040create18771966477900
41000000015885985330x9dab17b59a0612347929fe03bb82d6a03f8a0880ac62...0x8a91c9a16cd62693649d80afa85a09dbbdcb850800x903171964ee615dc99f350bd29ea747b887ae3f4create18975226477910
\n", "
" ], "text/plain": [ " blockNumber timeStamp hash \\\n", "0 10000000 1588598533 0xc2f74145a896b6a5b938216d130f5c382d3d77d5d501... \n", "1 10000000 1588598533 0xa9b04ff42f93868886c1258ba59967ceb6aafa011865... \n", "2 10000000 1588598533 0xc96ee63d87a2d21b1dccff4d3de50726887cadbf010c... \n", "3 10000000 1588598533 0x46a9ce0dbc787533c6bda878ff3c4f2354b86301bf4f... \n", "4 10000000 1588598533 0x9dab17b59a0612347929fe03bb82d6a03f8a0880ac62... \n", "\n", " from \\\n", "0 0xf0542ed44d268c85875b3b84b0e7ce0773e9aeef \n", "1 0x8a91c9a16cd62693649d80afa85a09dbbdcb8508 \n", "2 0x8a91c9a16cd62693649d80afa85a09dbbdcb8508 \n", "3 0x8a91c9a16cd62693649d80afa85a09dbbdcb8508 \n", "4 0x8a91c9a16cd62693649d80afa85a09dbbdcb8508 \n", "\n", " to value \\\n", "0 0x35e4876102389f13d78381d317ff4612412a56c9 50000000000000000 \n", "1 0 \n", "2 0 \n", "3 0 \n", "4 0 \n", "\n", " contractAddress input type gas gasUsed \\\n", "0 call 2300 0 \n", "1 0xbce5fe052b25e422550f6012fdd1941f9353f001 create 1499696 64779 \n", "2 0x1f52775214e2b3d099eb82b6e9e9025c490157ad create 1877196 64779 \n", "3 0x2858e866c5fdcefea13bedf13948a785b5c8b040 create 1877196 64779 \n", "4 0x903171964ee615dc99f350bd29ea747b887ae3f4 create 1897522 64779 \n", "\n", " traceId isError errCode \n", "0 0 0 \n", "1 0 0 \n", "2 0 0 \n", "3 0 0 \n", "4 1 0 " ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "block_range_internals = es.get_block_range_internal_transactions(10000000,10001000)\n", "time.sleep(1)\n", "block_range_internals.head()" ] }, { "cell_type": "markdown", "id": "bdde7cb7", "metadata": {}, "source": [ "### get_account_token_transfers" ] }, { "cell_type": "markdown", "id": "06efeb28", "metadata": {}, "source": [ "Returns the list of ERC-20 tokens transferred by an address, with optional filtering by token contract" ] }, { "cell_type": "code", "execution_count": 8, "id": "fadd60c3", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
0xBa19BdFF99065d9ABF3dF8CE942390B97fd71B12...0x503e4bfe8299D486701BC7bc7F2Ea94f50035daC
blockNumbertimeStamphashnonceblockHashfromcontractAddresstovaluetokenName...tokenNametokenSymboltokenDecimaltransactionIndexgasgasPricegasUsedcumulativeGasUsedinputconfirmations
01215049916172386630x1680acc117e0a9bfa7e24553c11a6ca133a1c708a677...350x32b9419d095d0d6031498dac7b86844536db45b210be...0x503e4bfe8299d486701bc7bc7f2ea94f50035dac0x2260fac5e5542a773aa44fbcfedf7c193bc2c5990xba19bdff99065d9abf3df8ce942390b97fd71b1225282582Wrapped BTC...DefiPulse IndexDPI18291700001222009669181247712220434deprecated1766661
11215050616172387520x42595019ce981395f8e92ebf645989527a8537d71aab...110x4eb37fcc85990d4eebd746e9a78b014d3093a49aaf56...0xe35e8e145745df95d38d2ae1d2091c9097962e0d0x2260fac5e5542a773aa44fbcfedf7c193bc2c5990xba19bdff99065d9abf3df8ce942390b97fd71b128604978Wrapped BTC...DefiPulse IndexDPI187170000124772370792109771316200deprecated1766494
21215061516172400990x23ea85829b0d9f78ce79ae543411252793a60ac93e67...20xd0e73d1b266d43c767a5ff9989da25fda414b9a40326...0xba19bdff99065d9abf3df8ce942390b97fd71b120x2260fac5e5542a773aa44fbcfedf7c193bc2c5990x0f92496ff3997d8911b42dc87cd71c29493c2efa33880000Wrapped BTC...Interest Bearing ETHibETH1889137074117000000000913837411688deprecated1754195
31215061516172400990x23ea85829b0d9f78ce79ae543411252793a60ac93e67...20xd0e73d1b266d43c767a5ff9989da25fda414b9a40326...0x00000000000000000000000000000000000000000x6b175474e89094c44da98b954eedeac495271d0f0xba19bdff99065d9abf3df8ce942390b97fd71b1210000000000000000000000Dai Stablecoin...Interest Bearing ETHibETH1877114058130000000000760398219729deprecated1748600
41215067816172408210xcb1d2301f1ca5d697c150539276eb914ada713211011...40x207f158eb9443f3867dbb8ea7d28cf7732d6393472b7...0xba19bdff99065d9abf3df8ce942390b97fd71b120x6b175474e89094c44da98b954eedeac495271d0f0xa478c2975ab1ea89e8196811f51a7b7ade33eb1110000000000000000000000Dai Stablecoin...Curve DAO TokenCRV1814916492513150000000012436310406728deprecated1721161
\n", "

5 rows × 38 columns

\n", "
" ], "text/plain": [ " 0xBa19BdFF99065d9ABF3dF8CE942390B97fd71B12 \\\n", " blockNumber timeStamp \n", "0 12150499 1617238663 \n", "1 12150506 1617238752 \n", "2 12150615 1617240099 \n", "3 12150615 1617240099 \n", "4 12150678 1617240821 \n", "\n", " \\\n", " hash nonce \n", "0 0x1680acc117e0a9bfa7e24553c11a6ca133a1c708a677... 35 \n", "1 0x42595019ce981395f8e92ebf645989527a8537d71aab... 11 \n", "2 0x23ea85829b0d9f78ce79ae543411252793a60ac93e67... 2 \n", "3 0x23ea85829b0d9f78ce79ae543411252793a60ac93e67... 2 \n", "4 0xcb1d2301f1ca5d697c150539276eb914ada713211011... 4 \n", "\n", " \\\n", " blockHash \n", "0 0x32b9419d095d0d6031498dac7b86844536db45b210be... \n", "1 0x4eb37fcc85990d4eebd746e9a78b014d3093a49aaf56... \n", "2 0xd0e73d1b266d43c767a5ff9989da25fda414b9a40326... \n", "3 0xd0e73d1b266d43c767a5ff9989da25fda414b9a40326... \n", "4 0x207f158eb9443f3867dbb8ea7d28cf7732d6393472b7... \n", "\n", " \\\n", " from \n", "0 0x503e4bfe8299d486701bc7bc7f2ea94f50035dac \n", "1 0xe35e8e145745df95d38d2ae1d2091c9097962e0d \n", "2 0xba19bdff99065d9abf3df8ce942390b97fd71b12 \n", "3 0x0000000000000000000000000000000000000000 \n", "4 0xba19bdff99065d9abf3df8ce942390b97fd71b12 \n", "\n", " \\\n", " contractAddress \n", "0 0x2260fac5e5542a773aa44fbcfedf7c193bc2c599 \n", "1 0x2260fac5e5542a773aa44fbcfedf7c193bc2c599 \n", "2 0x2260fac5e5542a773aa44fbcfedf7c193bc2c599 \n", "3 0x6b175474e89094c44da98b954eedeac495271d0f \n", "4 0x6b175474e89094c44da98b954eedeac495271d0f \n", "\n", " \\\n", " to value \n", "0 0xba19bdff99065d9abf3df8ce942390b97fd71b12 25282582 \n", "1 0xba19bdff99065d9abf3df8ce942390b97fd71b12 8604978 \n", "2 0x0f92496ff3997d8911b42dc87cd71c29493c2efa 33880000 \n", "3 0xba19bdff99065d9abf3df8ce942390b97fd71b12 10000000000000000000000 \n", "4 0xa478c2975ab1ea89e8196811f51a7b7ade33eb11 10000000000000000000000 \n", "\n", " ... 0x503e4bfe8299D486701BC7bc7F2Ea94f50035daC \\\n", " tokenName ... tokenName tokenSymbol \n", "0 Wrapped BTC ... DefiPulse Index DPI \n", "1 Wrapped BTC ... DefiPulse Index DPI \n", "2 Wrapped BTC ... Interest Bearing ETH ibETH \n", "3 Dai Stablecoin ... Interest Bearing ETH ibETH \n", "4 Dai Stablecoin ... Curve DAO Token CRV \n", "\n", " \\\n", " tokenDecimal transactionIndex gas gasPrice gasUsed \n", "0 18 29 170000 122200966918 124771 \n", "1 18 7 170000 124772370792 109771 \n", "2 18 89 137074 117000000000 91383 \n", "3 18 77 114058 130000000000 76039 \n", "4 18 149 164925 131500000000 124363 \n", "\n", " \n", " cumulativeGasUsed input confirmations \n", "0 2220434 deprecated 1766661 \n", "1 316200 deprecated 1766494 \n", "2 7411688 deprecated 1754195 \n", "3 8219729 deprecated 1748600 \n", "4 10406728 deprecated 1721161 \n", "\n", "[5 rows x 38 columns]" ] }, "execution_count": 8, "metadata": {}, "output_type": "execute_result" } ], "source": [ "account_token_transfers = es.get_account_token_transfers(accounts)\n", "time.sleep(1)\n", "account_token_transfers.head()" ] }, { "cell_type": "markdown", "id": "370f56ba", "metadata": {}, "source": [ "### get_account_nft_transfers" ] }, { "cell_type": "markdown", "id": "b1dcc694", "metadata": {}, "source": [ "Returns the list of ERC-721 ( NFT ) tokens transferred by an address, with optional filtering by token contract" ] }, { "cell_type": "code", "execution_count": 9, "id": "ddd15e06", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
0xBa19BdFF99065d9ABF3dF8CE942390B97fd71B12...0x503e4bfe8299D486701BC7bc7F2Ea94f50035daC
blockNumbertimeStamphashnonceblockHashfromcontractAddresstotokenIDtokenName...tokenNametokenSymboltokenDecimaltransactionIndexgasgasPricegasUsedcumulativeGasUsedinputconfirmations
01216333516174095970x68141c1316d922ed5113e265a5d636f1ec6b090e7ea7...70x50410977c4200551881195a8a82dc774f1ad856d1486...0x283af0b28c62c092c9727f1ee09c02ca627eb7f50x57f1887a8bf19b14fc0df6fd9b2acc9af147ea850xba19bdff99065d9abf3df8ce942390b97fd71b124330337349596085516852643297037585621539016595...Ethereum Name Service...Ethereum Name ServiceENS01413167371040000000002743059723492deprecated1733496
11310577416300441460xafeac0a71b170dc37ee03b12b6b063c930de3008986f...1540x06a55da3c1917d3401d32386e2e0ba931301363d2f63...0x00000000000000000000000000000000000000000xdc8bed466ee117ebff8ee84896d6acd42170d4bb0xba19bdff99065d9abf3df8ce942390b97fd71b121014Non-Fungible Soup...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
21310577416300441460xafeac0a71b170dc37ee03b12b6b063c930de3008986f...1540x06a55da3c1917d3401d32386e2e0ba931301363d2f63...0x00000000000000000000000000000000000000000xdc8bed466ee117ebff8ee84896d6acd42170d4bb0xba19bdff99065d9abf3df8ce942390b97fd71b121585Non-Fungible Soup...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
31310577416300441460xafeac0a71b170dc37ee03b12b6b063c930de3008986f...1540x06a55da3c1917d3401d32386e2e0ba931301363d2f63...0x00000000000000000000000000000000000000000xdc8bed466ee117ebff8ee84896d6acd42170d4bb0xba19bdff99065d9abf3df8ce942390b97fd71b12108Non-Fungible Soup...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
41310812716300767790xa63f272d0089e3c0f3af4f11a817dacda9a203e35bb1...1550xa9e53c0bc8f6abb2c5e1a8c73d5ea7e7b4528d872834...0xba19bdff99065d9abf3df8ce942390b97fd71b120xdc8bed466ee117ebff8ee84896d6acd42170d4bb0x07bbf9fdb156f298bec53cefa3652954a0738ed11585Non-Fungible Soup...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
\n", "

5 rows × 38 columns

\n", "
" ], "text/plain": [ " 0xBa19BdFF99065d9ABF3dF8CE942390B97fd71B12 \\\n", " blockNumber timeStamp \n", "0 12163335 1617409597 \n", "1 13105774 1630044146 \n", "2 13105774 1630044146 \n", "3 13105774 1630044146 \n", "4 13108127 1630076779 \n", "\n", " \\\n", " hash nonce \n", "0 0x68141c1316d922ed5113e265a5d636f1ec6b090e7ea7... 7 \n", "1 0xafeac0a71b170dc37ee03b12b6b063c930de3008986f... 154 \n", "2 0xafeac0a71b170dc37ee03b12b6b063c930de3008986f... 154 \n", "3 0xafeac0a71b170dc37ee03b12b6b063c930de3008986f... 154 \n", "4 0xa63f272d0089e3c0f3af4f11a817dacda9a203e35bb1... 155 \n", "\n", " \\\n", " blockHash \n", "0 0x50410977c4200551881195a8a82dc774f1ad856d1486... \n", "1 0x06a55da3c1917d3401d32386e2e0ba931301363d2f63... \n", "2 0x06a55da3c1917d3401d32386e2e0ba931301363d2f63... \n", "3 0x06a55da3c1917d3401d32386e2e0ba931301363d2f63... \n", "4 0xa9e53c0bc8f6abb2c5e1a8c73d5ea7e7b4528d872834... \n", "\n", " \\\n", " from \n", "0 0x283af0b28c62c092c9727f1ee09c02ca627eb7f5 \n", "1 0x0000000000000000000000000000000000000000 \n", "2 0x0000000000000000000000000000000000000000 \n", "3 0x0000000000000000000000000000000000000000 \n", "4 0xba19bdff99065d9abf3df8ce942390b97fd71b12 \n", "\n", " \\\n", " contractAddress \n", "0 0x57f1887a8bf19b14fc0df6fd9b2acc9af147ea85 \n", "1 0xdc8bed466ee117ebff8ee84896d6acd42170d4bb \n", "2 0xdc8bed466ee117ebff8ee84896d6acd42170d4bb \n", "3 0xdc8bed466ee117ebff8ee84896d6acd42170d4bb \n", "4 0xdc8bed466ee117ebff8ee84896d6acd42170d4bb \n", "\n", " \\\n", " to \n", "0 0xba19bdff99065d9abf3df8ce942390b97fd71b12 \n", "1 0xba19bdff99065d9abf3df8ce942390b97fd71b12 \n", "2 0xba19bdff99065d9abf3df8ce942390b97fd71b12 \n", "3 0xba19bdff99065d9abf3df8ce942390b97fd71b12 \n", "4 0x07bbf9fdb156f298bec53cefa3652954a0738ed1 \n", "\n", " \\\n", " tokenID tokenName \n", "0 4330337349596085516852643297037585621539016595... Ethereum Name Service \n", "1 1014 Non-Fungible Soup \n", "2 1585 Non-Fungible Soup \n", "3 108 Non-Fungible Soup \n", "4 1585 Non-Fungible Soup \n", "\n", " ... 0x503e4bfe8299D486701BC7bc7F2Ea94f50035daC \\\n", " ... tokenName tokenSymbol tokenDecimal \n", "0 ... Ethereum Name Service ENS 0 \n", "1 ... NaN NaN NaN \n", "2 ... NaN NaN NaN \n", "3 ... NaN NaN NaN \n", "4 ... NaN NaN NaN \n", "\n", " \\\n", " transactionIndex gas gasPrice gasUsed cumulativeGasUsed \n", "0 141 316737 104000000000 274305 9723492 \n", "1 NaN NaN NaN NaN NaN \n", "2 NaN NaN NaN NaN NaN \n", "3 NaN NaN NaN NaN NaN \n", "4 NaN NaN NaN NaN NaN \n", "\n", " \n", " input confirmations \n", "0 deprecated 1733496 \n", "1 NaN NaN \n", "2 NaN NaN \n", "3 NaN NaN \n", "4 NaN NaN \n", "\n", "[5 rows x 38 columns]" ] }, "execution_count": 9, "metadata": {}, "output_type": "execute_result" } ], "source": [ "account_nft_transfers = es.get_account_nft_transfers(accounts)\n", "time.sleep(1)\n", "account_nft_transfers.head()" ] }, { "cell_type": "markdown", "id": "4e6e5202", "metadata": {}, "source": [ "### get_account_blocks_mined" ] }, { "cell_type": "markdown", "id": "bef06eb7", "metadata": {}, "source": [ "Returns the list of blocks mined by an address" ] }, { "cell_type": "code", "execution_count": 2, "id": "cedbed4e", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
0xEA674fdDe714fd979de3EdF0F56AA9716B898ec80x829BD824B016326A401d083B33D092293333A830
blockNumbertimeStampblockRewardblockNumbertimeStampblockReward
013930693164118835820827643189280269171393069216411883542026197939084862035
113930687164118831020000000000000000001393068816411883112137050444256578152
213930685164118828220446035993654995081393068616411882952087861421208960766
313930680164118822820713775677156458561393068416411882662163025280071299245
413930678164118817422575980010842988491393067216411881382023575067970603989
\n", "
" ], "text/plain": [ " 0xEA674fdDe714fd979de3EdF0F56AA9716B898ec8 \\\n", " blockNumber timeStamp blockReward \n", "0 13930693 1641188358 2082764318928026917 \n", "1 13930687 1641188310 2000000000000000000 \n", "2 13930685 1641188282 2044603599365499508 \n", "3 13930680 1641188228 2071377567715645856 \n", "4 13930678 1641188174 2257598001084298849 \n", "\n", " 0x829BD824B016326A401d083B33D092293333A830 \n", " blockNumber timeStamp blockReward \n", "0 13930692 1641188354 2026197939084862035 \n", "1 13930688 1641188311 2137050444256578152 \n", "2 13930686 1641188295 2087861421208960766 \n", "3 13930684 1641188266 2163025280071299245 \n", "4 13930672 1641188138 2023575067970603989 " ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Ethermine pubkey, F2Pool Old pubkey\n", "miners = ['0xEA674fdDe714fd979de3EdF0F56AA9716B898ec8', '0x829BD824B016326A401d083B33D092293333A830']\n", "account_blocks_mined = es.get_account_blocks_mined(miners)\n", "time.sleep(1)\n", "account_blocks_mined.head()" ] }, { "cell_type": "markdown", "id": "ecf32244", "metadata": {}, "source": [ "## Contracts" ] }, { "cell_type": "markdown", "id": "0d581372", "metadata": {}, "source": [ "Functions to return information about contracts" ] }, { "cell_type": "code", "execution_count": 11, "id": "01fb4f5b", "metadata": {}, "outputs": [], "source": [ "# Sushiswap Router, Ygov Contract\n", "contracts = ['0xd9e1cE17f2641f24aE83637ab66a2cca9C378B9F', '0x0001FB050Fe7312791bF6475b96569D83F695C9f']" ] }, { "cell_type": "markdown", "id": "0848243e", "metadata": {}, "source": [ "### get_contract_abi" ] }, { "cell_type": "markdown", "id": "b7f8cb09", "metadata": {}, "source": [ "Returns the Contract Application Binary Interface (ABI) of a verified smart contract" ] }, { "cell_type": "code", "execution_count": 12, "id": "a48d49ef", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'0xd9e1cE17f2641f24aE83637ab66a2cca9C378B9F': '[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_factory\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_WETH\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"WETH\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"tokenA\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"tokenB\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amountADesired\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountBDesired\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountAMin\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountBMin\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"}],\"name\":\"addLiquidity\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"amountA\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountB\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"liquidity\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amountTokenDesired\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountTokenMin\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountETHMin\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"}],\"name\":\"addLiquidityETH\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"amountToken\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountETH\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"liquidity\",\"type\":\"uint256\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"factory\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amountOut\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"reserveIn\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"reserveOut\",\"type\":\"uint256\"}],\"name\":\"getAmountIn\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"amountIn\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amountIn\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"reserveIn\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"reserveOut\",\"type\":\"uint256\"}],\"name\":\"getAmountOut\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"amountOut\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amountOut\",\"type\":\"uint256\"},{\"internalType\":\"address[]\",\"name\":\"path\",\"type\":\"address[]\"}],\"name\":\"getAmountsIn\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"amounts\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amountIn\",\"type\":\"uint256\"},{\"internalType\":\"address[]\",\"name\":\"path\",\"type\":\"address[]\"}],\"name\":\"getAmountsOut\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"amounts\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amountA\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"reserveA\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"reserveB\",\"type\":\"uint256\"}],\"name\":\"quote\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"amountB\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"tokenA\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"tokenB\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"liquidity\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountAMin\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountBMin\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"}],\"name\":\"removeLiquidity\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"amountA\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountB\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"liquidity\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountTokenMin\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountETHMin\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"}],\"name\":\"removeLiquidityETH\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"amountToken\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountETH\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"liquidity\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountTokenMin\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountETHMin\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"}],\"name\":\"removeLiquidityETHSupportingFeeOnTransferTokens\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"amountETH\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"liquidity\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountTokenMin\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountETHMin\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"approveMax\",\"type\":\"bool\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"removeLiquidityETHWithPermit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"amountToken\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountETH\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"liquidity\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountTokenMin\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountETHMin\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"approveMax\",\"type\":\"bool\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"removeLiquidityETHWithPermitSupportingFeeOnTransferTokens\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"amountETH\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"tokenA\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"tokenB\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"liquidity\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountAMin\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountBMin\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"approveMax\",\"type\":\"bool\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"removeLiquidityWithPermit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"amountA\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountB\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amountOut\",\"type\":\"uint256\"},{\"internalType\":\"address[]\",\"name\":\"path\",\"type\":\"address[]\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"}],\"name\":\"swapETHForExactTokens\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"amounts\",\"type\":\"uint256[]\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amountOutMin\",\"type\":\"uint256\"},{\"internalType\":\"address[]\",\"name\":\"path\",\"type\":\"address[]\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"}],\"name\":\"swapExactETHForTokens\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"amounts\",\"type\":\"uint256[]\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amountOutMin\",\"type\":\"uint256\"},{\"internalType\":\"address[]\",\"name\":\"path\",\"type\":\"address[]\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"}],\"name\":\"swapExactETHForTokensSupportingFeeOnTransferTokens\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amountIn\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountOutMin\",\"type\":\"uint256\"},{\"internalType\":\"address[]\",\"name\":\"path\",\"type\":\"address[]\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"}],\"name\":\"swapExactTokensForETH\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"amounts\",\"type\":\"uint256[]\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amountIn\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountOutMin\",\"type\":\"uint256\"},{\"internalType\":\"address[]\",\"name\":\"path\",\"type\":\"address[]\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"}],\"name\":\"swapExactTokensForETHSupportingFeeOnTransferTokens\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amountIn\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountOutMin\",\"type\":\"uint256\"},{\"internalType\":\"address[]\",\"name\":\"path\",\"type\":\"address[]\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"}],\"name\":\"swapExactTokensForTokens\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"amounts\",\"type\":\"uint256[]\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amountIn\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountOutMin\",\"type\":\"uint256\"},{\"internalType\":\"address[]\",\"name\":\"path\",\"type\":\"address[]\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"}],\"name\":\"swapExactTokensForTokensSupportingFeeOnTransferTokens\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amountOut\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountInMax\",\"type\":\"uint256\"},{\"internalType\":\"address[]\",\"name\":\"path\",\"type\":\"address[]\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"}],\"name\":\"swapTokensForExactETH\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"amounts\",\"type\":\"uint256[]\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amountOut\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountInMax\",\"type\":\"uint256\"},{\"internalType\":\"address[]\",\"name\":\"path\",\"type\":\"address[]\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"}],\"name\":\"swapTokensForExactTokens\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"amounts\",\"type\":\"uint256[]\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}]',\n", " '0x0001FB050Fe7312791bF6475b96569D83F695C9f': '[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"reward\",\"type\":\"uint256\"}],\"name\":\"RewardAdded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"reward\",\"type\":\"uint256\"}],\"name\":\"RewardPaid\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Staked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Withdrawn\",\"type\":\"event\"},{\"constant\":true,\"inputs\":[],\"name\":\"DURATION\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"earned\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[],\"name\":\"exit\",\"outputs\":[],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[],\"name\":\"getReward\",\"outputs\":[],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[],\"name\":\"isOwner\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[],\"name\":\"lastTimeRewardApplicable\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[],\"name\":\"lastUpdateTime\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"reward\",\"type\":\"uint256\"}],\"name\":\"notifyRewardAmount\",\"outputs\":[],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[],\"name\":\"periodFinish\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[],\"name\":\"rewardPerToken\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[],\"name\":\"rewardPerTokenStored\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[],\"name\":\"rewardRate\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"rewards\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"internalType\":\"address\",\"name\":\"_rewardDistribution\",\"type\":\"address\"}],\"name\":\"setRewardDistribution\",\"outputs\":[],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"stake\",\"outputs\":[],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"userRewardPerTokenPaid\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"withdraw\",\"outputs\":[],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[],\"name\":\"y\",\"outputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"\",\"type\":\"address\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[],\"name\":\"yfi\",\"outputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"\",\"type\":\"address\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"}]'}" ] }, "execution_count": 12, "metadata": {}, "output_type": "execute_result" } ], "source": [ "abis = es.get_contract_abi(contracts)\n", "time.sleep(1)\n", "abis" ] }, { "cell_type": "markdown", "id": "10a2afce", "metadata": {}, "source": [ "### get_contract_source_code" ] }, { "cell_type": "markdown", "id": "e906f2d8", "metadata": {}, "source": [ "Returns the Solidity source code of a verified smart contract" ] }, { "cell_type": "code", "execution_count": 13, "id": "13ecd7ed", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
0xd9e1cE17f2641f24aE83637ab66a2cca9C378B9F...0x0001FB050Fe7312791bF6475b96569D83F695C9f
SourceCodeABIContractNameCompilerVersionOptimizationUsedRunsConstructorArgumentsEVMVersionLibraryLicenseType...CompilerVersionOptimizationUsedRunsConstructorArgumentsEVMVersionLibraryLicenseTypeProxyImplementationSwarmSource
0// File: contracts/uniswapv2/interfaces/IUnisw...[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"...UniswapV2Router02v0.6.12+commit.27d517651200000000000000000000000000c0aee478e3658e2610c5f7...DefaultNone...v0.5.16+commit.9c3226ce0200DefaultMIT0bzzr://e51af10bf74bebc919ec3e43a0470cbc7433a40...
\n", "

1 rows × 26 columns

\n", "
" ], "text/plain": [ " 0xd9e1cE17f2641f24aE83637ab66a2cca9C378B9F \\\n", " SourceCode \n", "0 // File: contracts/uniswapv2/interfaces/IUnisw... \n", "\n", " \\\n", " ABI ContractName \n", "0 [{\"inputs\":[{\"internalType\":\"address\",\"name\":\"... UniswapV2Router02 \n", "\n", " \\\n", " CompilerVersion OptimizationUsed Runs \n", "0 v0.6.12+commit.27d51765 1 200 \n", "\n", " \\\n", " ConstructorArguments EVMVersion Library \n", "0 000000000000000000000000c0aee478e3658e2610c5f7... Default \n", "\n", " ... 0x0001FB050Fe7312791bF6475b96569D83F695C9f \\\n", " LicenseType ... CompilerVersion \n", "0 None ... v0.5.16+commit.9c3226ce \n", "\n", " \\\n", " OptimizationUsed Runs ConstructorArguments EVMVersion Library LicenseType \n", "0 0 200 Default MIT \n", "\n", " \n", " Proxy Implementation SwarmSource \n", "0 0 bzzr://e51af10bf74bebc919ec3e43a0470cbc7433a40... \n", "\n", "[1 rows x 26 columns]" ] }, "execution_count": 13, "metadata": {}, "output_type": "execute_result" } ], "source": [ "source_code = es.get_contract_source_code(contracts)\n", "time.sleep(1)\n", "source_code" ] }, { "cell_type": "markdown", "id": "71973602", "metadata": {}, "source": [ "## Transactions" ] }, { "cell_type": "markdown", "id": "83817b19", "metadata": {}, "source": [ "Functions to return information about transactions" ] }, { "cell_type": "code", "execution_count": 14, "id": "f7d14c7b", "metadata": {}, "outputs": [], "source": [ "txns = ['0x29f2df8ce6a0e2a93bddacdfcceb9fd847630dcd1d25ad1ec3402cc449fa1eb6', '0x0bd7f9af4f8ddb18a321ab0120a2389046b39feb67561d17378e0d4dc062decc', '0x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787e341eea230614e49ff61']" ] }, { "cell_type": "markdown", "id": "9a53f185", "metadata": {}, "source": [ "### get_contract_execution_status -- busted on Etherscan backend" ] }, { "cell_type": "markdown", "id": "5c57928e", "metadata": {}, "source": [ "Returns the status code of a contract execution" ] }, { "cell_type": "code", "execution_count": 15, "id": "b54297bd", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
transactions
0x29f2df8ce6a0e2a93bddacdfcceb9fd847630dcd1d25ad1ec3402cc449fa1eb6Error! Missing Or invalid Action name
0x0bd7f9af4f8ddb18a321ab0120a2389046b39feb67561d17378e0d4dc062deccError! Missing Or invalid Action name
0x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787e341eea230614e49ff61Error! Missing Or invalid Action name
\n", "
" ], "text/plain": [ " transactions\n", "0x29f2df8ce6a0e2a93bddacdfcceb9fd847630dcd1d25a... Error! Missing Or invalid Action name\n", "0x0bd7f9af4f8ddb18a321ab0120a2389046b39feb67561... Error! Missing Or invalid Action name\n", "0x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787e... Error! Missing Or invalid Action name" ] }, "execution_count": 15, "metadata": {}, "output_type": "execute_result" } ], "source": [ "contract_execution_status = es.get_contract_execution_status(txns)\n", "time.sleep(1)\n", "contract_execution_status" ] }, { "cell_type": "markdown", "id": "cfb44e87", "metadata": {}, "source": [ "### get_transaction_execution_status -- busted on Etherscan backend" ] }, { "cell_type": "markdown", "id": "c208c434", "metadata": {}, "source": [ "Returns the status code of a transaction execution." ] }, { "cell_type": "code", "execution_count": 16, "id": "dab115a6", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
transactions
0x29f2df8ce6a0e2a93bddacdfcceb9fd847630dcd1d25ad1ec3402cc449fa1eb6Error! Missing Or invalid Action name
0x0bd7f9af4f8ddb18a321ab0120a2389046b39feb67561d17378e0d4dc062deccError! Missing Or invalid Action name
0x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787e341eea230614e49ff61Error! Missing Or invalid Action name
\n", "
" ], "text/plain": [ " transactions\n", "0x29f2df8ce6a0e2a93bddacdfcceb9fd847630dcd1d25a... Error! Missing Or invalid Action name\n", "0x0bd7f9af4f8ddb18a321ab0120a2389046b39feb67561... Error! Missing Or invalid Action name\n", "0x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787e... Error! Missing Or invalid Action name" ] }, "execution_count": 16, "metadata": {}, "output_type": "execute_result" } ], "source": [ "transaction_execution_status = es.get_transaction_execution_status(txns)\n", "time.sleep(1)\n", "transaction_execution_status" ] }, { "cell_type": "markdown", "id": "d1c328ec", "metadata": {}, "source": [ "## Blocks" ] }, { "cell_type": "markdown", "id": "09fb064e", "metadata": {}, "source": [ "Functions to return information about given block(s)" ] }, { "cell_type": "code", "execution_count": 2, "id": "7824d5b7", "metadata": {}, "outputs": [], "source": [ "blocks = [13188647, 13088500]\n", "far_out_block = 50000000\n", "timestamp = 1638767557" ] }, { "cell_type": "markdown", "id": "22de6cc2", "metadata": {}, "source": [ "### get_block_reward" ] }, { "cell_type": "markdown", "id": "7d91d87b", "metadata": {}, "source": [ "Returns the block reward and 'Uncle' block rewards" ] }, { "cell_type": "code", "execution_count": 18, "id": "4435c797", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
1318864713088500
blockNumber1318864713088500
timeStamp16311513751629814354
blockMiner0x5a0b54d5dc17e0aadc383d2db43b0a0d3e029c4c0x1ad91ee08f21be3de0ba2ba6918e714da6b45836
blockReward27478249412034367162431595650457815561
uncles[][]
uncleInclusionReward00
\n", "
" ], "text/plain": [ " 13188647 \\\n", "blockNumber 13188647 \n", "timeStamp 1631151375 \n", "blockMiner 0x5a0b54d5dc17e0aadc383d2db43b0a0d3e029c4c \n", "blockReward 2747824941203436716 \n", "uncles [] \n", "uncleInclusionReward 0 \n", "\n", " 13088500 \n", "blockNumber 13088500 \n", "timeStamp 1629814354 \n", "blockMiner 0x1ad91ee08f21be3de0ba2ba6918e714da6b45836 \n", "blockReward 2431595650457815561 \n", "uncles [] \n", "uncleInclusionReward 0 " ] }, "execution_count": 18, "metadata": {}, "output_type": "execute_result" } ], "source": [ "block_rewards = es.get_block_reward(blocks)\n", "time.sleep(1)\n", "block_rewards" ] }, { "cell_type": "markdown", "id": "148a901c", "metadata": {}, "source": [ "### get_block_countdown" ] }, { "cell_type": "markdown", "id": "7617ad8a", "metadata": {}, "source": [ "Returns the estimated time remaining, in seconds, until a certain block is mined" ] }, { "cell_type": "code", "execution_count": 19, "id": "d7fbed3e", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
CurrentBlockCountdownBlockRemainingBlockEstimateTimeInSec
0137615675000000036238433496466547.1
\n", "
" ], "text/plain": [ " CurrentBlock CountdownBlock RemainingBlock EstimateTimeInSec\n", "0 13761567 50000000 36238433 496466547.1" ] }, "execution_count": 19, "metadata": {}, "output_type": "execute_result" } ], "source": [ "block_countdown = es.get_block_countdown(far_out_block)\n", "time.sleep(1)\n", "block_countdown" ] }, { "cell_type": "markdown", "id": "5a661634", "metadata": {}, "source": [ "### get_block_by_timestamp" ] }, { "cell_type": "markdown", "id": "de1dd5aa", "metadata": {}, "source": [ "Returns the block number that was mined at a certain timestamp (in unix)" ] }, { "cell_type": "code", "execution_count": 20, "id": "489c178e", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
0
013750384
\n", "
" ], "text/plain": [ " 0\n", "0 13750384" ] }, "execution_count": 20, "metadata": {}, "output_type": "execute_result" } ], "source": [ "block_at_time = es.get_block_by_timestamp(timestamp)\n", "time.sleep(1)\n", "block_at_time" ] }, { "cell_type": "markdown", "id": "86df1899", "metadata": {}, "source": [ "## Logs" ] }, { "cell_type": "markdown", "id": "ef57d842", "metadata": {}, "source": [ "This function is a wrapper around the Etherscan API which is a wrapper around the native eth_getLogs. Please check out their documentation for a more in depth explanation: https://docs.etherscan.io/api-endpoints/logs\n", "\n", "Below are the list of supported filter parameters:\n", "* fromBlock, toBlock, address\n", "* topic0, topic1, topic2, topic3 (32 Bytes per topic)\n", "* topic0_1_opr (and|or between topic0 & topic1), topic1_2_opr (and|or between topic1 & topic2), topic2_3_opr (and|or between topic2 & topic3), topic0_2_opr (and|or between topic0 & topic2), topic0_3_opr (and|or between topic0 & topic3), topic1_3_opr (and|or between topic1 & topic3)\n", "\n", "\n", "Some parameters to take note of:\n", "* FromBlock & ToBlock accepts the blocknumber (integer, NOT hex) or 'latest' (earliest & pending is NOT supported yet)\n", "* Topic Operator (opr) choices are either 'and' or 'or' and are restricted to the above choices only\n", "* FromBlock & ToBlock parameters are required\n", "* An address and/or topic(X) parameters are required, when multiple topic(X) parameters are used the topicX_X_opr (and|or operator) is also required" ] }, { "cell_type": "code", "execution_count": 21, "id": "121adb3e", "metadata": {}, "outputs": [], "source": [ "address = '0x33990122638b9132ca29c723bdf037f1a891a70c'\n", "fromBlock=379224\n", "toBlock='latest'\n", "topic0='0xf63780e752c6a54a94fc52715dbc5518a3b4c3c2833d301a204226548a2a8545'" ] }, { "cell_type": "code", "execution_count": 22, "id": "7222456c", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
addresstopicsdatablockNumbertimeStampgasPricegasUsedlogIndextransactionHashtransactionIndex
00x33990122638b9132ca29c723bdf037f1a891a70c[0xf63780e752c6a54a94fc52715dbc5518a3b4c3c2833...0x0x5c9580x561d688c0xba43b74000x106820x0x0b03498648ae2da924f961dda00dc6bb0a8df1551926...0x
10x33990122638b9132ca29c723bdf037f1a891a70c[0xf63780e752c6a54a94fc52715dbc5518a3b4c3c2833...0x0x5c9650x561d69300xba43b74000x105c20x0x8c72ea19b48947c4339077bd9c9c09a780dfbdb1cafe...0x
20x33990122638b9132ca29c723bdf037f1a891a70c[0xf63780e752c6a54a94fc52715dbc5518a3b4c3c2833...0x0x6664c0x562812470xba43b74000x105c20x0xf9c4f7843dc1f9bf6d248ebe0033b2c51398255eb897...0x1
30x33990122638b9132ca29c723bdf037f1a891a70c[0xf63780e752c6a54a94fc52715dbc5518a3b4c3c2833...0x0x666500x5628125d0xba43b74000x106420x0xb190139d14140cf98035c5b78fe3b2629db2787ef234...0x
40x33990122638b9132ca29c723bdf037f1a891a70c[0xf63780e752c6a54a94fc52715dbc5518a3b4c3c2833...0x0x6aff60x562cf6960xba43b74000x104c20x0x27d96550f2b41e9bc3da7d6e2f2a333ce11c128d425b...0x1
.................................
3640x33990122638b9132ca29c723bdf037f1a891a70c[0xf63780e752c6a54a94fc52715dbc5518a3b4c3c2833...0x17f0b10x5742bd780x4a817c8000x107c20x0x647676db70d8d17d4d59f27afcd048181f2dd0d6e20d...0x
3650x33990122638b9132ca29c723bdf037f1a891a70c[0xf63780e752c6a54a94fc52715dbc5518a3b4c3c2833...0x18df110x575020780x4a817c8000x104c20x0xe8b0588b803621a50d4eccbb71e2f9463c0d6c267e6d...0x
3660x33990122638b9132ca29c723bdf037f1a891a70c[0xf63780e752c6a54a94fc52715dbc5518a3b4c3c2833...0x19741f0x5758741d0x4a817c8000x105020x10x84d0668ff085c81379e0b36aa6eaf54d5d387e93084d...0x1
3670x33990122638b9132ca29c723bdf037f1a891a70c[0xf63780e752c6a54a94fc52715dbc5518a3b4c3c2833...0x19749b0x57587a9f0x4a817c8000xca6a0x30xbb60625e9c4df3cd1c66f77fb673e478c81b58deccb1...0x5
3680x33990122638b9132ca29c723bdf037f1a891a70c[0xf63780e752c6a54a94fc52715dbc5518a3b4c3c2833...0x0x2399ec0x57e9bb5c0xba43b74000x106820x0x980742edcf7b5cc9e1fdb2ddd71df20a176454c09be5...0x
\n", "

369 rows × 10 columns

\n", "
" ], "text/plain": [ " address \\\n", "0 0x33990122638b9132ca29c723bdf037f1a891a70c \n", "1 0x33990122638b9132ca29c723bdf037f1a891a70c \n", "2 0x33990122638b9132ca29c723bdf037f1a891a70c \n", "3 0x33990122638b9132ca29c723bdf037f1a891a70c \n", "4 0x33990122638b9132ca29c723bdf037f1a891a70c \n", ".. ... \n", "364 0x33990122638b9132ca29c723bdf037f1a891a70c \n", "365 0x33990122638b9132ca29c723bdf037f1a891a70c \n", "366 0x33990122638b9132ca29c723bdf037f1a891a70c \n", "367 0x33990122638b9132ca29c723bdf037f1a891a70c \n", "368 0x33990122638b9132ca29c723bdf037f1a891a70c \n", "\n", " topics data blockNumber \\\n", "0 [0xf63780e752c6a54a94fc52715dbc5518a3b4c3c2833... 0x 0x5c958 \n", "1 [0xf63780e752c6a54a94fc52715dbc5518a3b4c3c2833... 0x 0x5c965 \n", "2 [0xf63780e752c6a54a94fc52715dbc5518a3b4c3c2833... 0x 0x6664c \n", "3 [0xf63780e752c6a54a94fc52715dbc5518a3b4c3c2833... 0x 0x66650 \n", "4 [0xf63780e752c6a54a94fc52715dbc5518a3b4c3c2833... 0x 0x6aff6 \n", ".. ... ... ... \n", "364 [0xf63780e752c6a54a94fc52715dbc5518a3b4c3c2833... 0x17f0b1 \n", "365 [0xf63780e752c6a54a94fc52715dbc5518a3b4c3c2833... 0x18df11 \n", "366 [0xf63780e752c6a54a94fc52715dbc5518a3b4c3c2833... 0x19741f \n", "367 [0xf63780e752c6a54a94fc52715dbc5518a3b4c3c2833... 0x19749b \n", "368 [0xf63780e752c6a54a94fc52715dbc5518a3b4c3c2833... 0x 0x2399ec \n", "\n", " timeStamp gasPrice gasUsed logIndex \\\n", "0 0x561d688c 0xba43b7400 0x10682 0x \n", "1 0x561d6930 0xba43b7400 0x105c2 0x \n", "2 0x56281247 0xba43b7400 0x105c2 0x \n", "3 0x5628125d 0xba43b7400 0x10642 0x \n", "4 0x562cf696 0xba43b7400 0x104c2 0x \n", ".. ... ... ... ... \n", "364 0x5742bd78 0x4a817c800 0x107c2 0x \n", "365 0x57502078 0x4a817c800 0x104c2 0x \n", "366 0x5758741d 0x4a817c800 0x10502 0x1 \n", "367 0x57587a9f 0x4a817c800 0xca6a 0x3 \n", "368 0x57e9bb5c 0xba43b7400 0x10682 0x \n", "\n", " transactionHash transactionIndex \n", "0 0x0b03498648ae2da924f961dda00dc6bb0a8df1551926... 0x \n", "1 0x8c72ea19b48947c4339077bd9c9c09a780dfbdb1cafe... 0x \n", "2 0xf9c4f7843dc1f9bf6d248ebe0033b2c51398255eb897... 0x1 \n", "3 0xb190139d14140cf98035c5b78fe3b2629db2787ef234... 0x \n", "4 0x27d96550f2b41e9bc3da7d6e2f2a333ce11c128d425b... 0x1 \n", ".. ... ... \n", "364 0x647676db70d8d17d4d59f27afcd048181f2dd0d6e20d... 0x \n", "365 0xe8b0588b803621a50d4eccbb71e2f9463c0d6c267e6d... 0x \n", "366 0x84d0668ff085c81379e0b36aa6eaf54d5d387e93084d... 0x1 \n", "367 0xbb60625e9c4df3cd1c66f77fb673e478c81b58deccb1... 0x5 \n", "368 0x980742edcf7b5cc9e1fdb2ddd71df20a176454c09be5... 0x \n", "\n", "[369 rows x 10 columns]" ] }, "execution_count": 22, "metadata": {}, "output_type": "execute_result" } ], "source": [ "logs = es.get_logs(address, fromBlock, to_block=toBlock, topic0=topic0)\n", "time.sleep(1)\n", "logs" ] }, { "cell_type": "markdown", "id": "5362d975", "metadata": {}, "source": [ "## Geth/Parity Proxy" ] }, { "cell_type": "markdown", "id": "8a3097b5", "metadata": {}, "source": [ "Functions to emulate a Geth/Parity Ethereum client through Etherscan" ] }, { "cell_type": "code", "execution_count": 2, "id": "92bd608e", "metadata": {}, "outputs": [], "source": [ "accounts = ['0xBa19BdFF99065d9ABF3dF8CE942390B97fd71B12', '0x503e4bfe8299D486701BC7bc7F2Ea94f50035daC']\n", "blocks = [13188647, 13088500]\n", "index = 0\n", "txns = ['0x29f2df8ce6a0e2a93bddacdfcceb9fd847630dcd1d25ad1ec3402cc449fa1eb6', '0x0bd7f9af4f8ddb18a321ab0120a2389046b39feb67561d17378e0d4dc062decc', '0x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787e341eea230614e49ff61']" ] }, { "cell_type": "markdown", "id": "8902c4b5", "metadata": {}, "source": [ "### get_eth_block_number" ] }, { "cell_type": "markdown", "id": "9a3488a5", "metadata": {}, "source": [ "Returns the number of most recent block" ] }, { "cell_type": "code", "execution_count": 24, "id": "d58c650b", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "13761569" ] }, "execution_count": 24, "metadata": {}, "output_type": "execute_result" } ], "source": [ "blockNo = es.get_eth_block_number()\n", "time.sleep(1)\n", "blockNo" ] }, { "cell_type": "markdown", "id": "507d2411", "metadata": {}, "source": [ "### get_eth_block" ] }, { "cell_type": "markdown", "id": "aaf9025d", "metadata": {}, "source": [ "Returns information about a block by block number" ] }, { "cell_type": "code", "execution_count": 25, "id": "776467f2", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
1318864713088500
baseFeePerGas0x134742b51d0x1355623da4
difficulty0x1f7f67443cdcec0x1cb13c9b887d19
extraData0xd883010a08846765746888676f312e31362e37856c69...0x486976656f6e2063612d68656176792068734541
gasLimit0x1c9c3800x1c9c380
gasUsed0x1c9a61f0xa325ef
hash0x39d5dd282cb927a8a4d48067753d65d4e94cf91f161d...0x94fbba5b586bb7b9790fc5300f9fc3ecad1d4f5d1c94...
logsBloom0xde213faebf5f4f69f195cfdbf44572ee7cf3d5d2a869...0x78bd33838112301d69e010cca0029a8108b0975a0084...
miner0x5a0b54d5dc17e0aadc383d2db43b0a0d3e029c4c0x1ad91ee08f21be3de0ba2ba6918e714da6b45836
mixHash0x294e8047712619a370ea19ff5a4a16cd6516f508bcd8...0x9f9143206f0c1e3ea0ced8be5c2fd55b5a5609503bd9...
nonce0x12b95eb00f0161470xacfd53f2a607601b
number0xc93e270xc7b6f4
parentHash0xe8bf0a48d5df068791f30aa3e5a51a512a6e6d33ad8d...0x6adc782254d0d211cb7260fdf921649ee990a5309d0d...
receiptsRoot0x18eec39ae671cdae2d92f3cdc0e1cb873eb20cd5265f...0x243cb4383ddaf0b8fee03763efb69a0102e489cd6689...
sha3Uncles0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a...0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a...
size0x1e4090xb1a1
stateRoot0xf0c8a65fc4d8913f249ab6c3269f4f14a893822f58f1...0xe88177015f6ef1601cda322d8830f308b33890250802...
timestamp0x6139650f0x6124fe52
totalDifficulty0x66ac2eb3acc46c324f50x63cd38d475da8174737
transactions[{'blockHash': '0x39d5dd282cb927a8a4d48067753d...[{'blockHash': '0x94fbba5b586bb7b9790fc5300f9f...
transactionsRoot0x980df7fe6c8beb9bfab65e6414a490dce743e9b55e93...0x93fb6db0b7354678be1b08a4769a65875d77fef756c6...
uncles[][]
\n", "
" ], "text/plain": [ " 13188647 \\\n", "baseFeePerGas 0x134742b51d \n", "difficulty 0x1f7f67443cdcec \n", "extraData 0xd883010a08846765746888676f312e31362e37856c69... \n", "gasLimit 0x1c9c380 \n", "gasUsed 0x1c9a61f \n", "hash 0x39d5dd282cb927a8a4d48067753d65d4e94cf91f161d... \n", "logsBloom 0xde213faebf5f4f69f195cfdbf44572ee7cf3d5d2a869... \n", "miner 0x5a0b54d5dc17e0aadc383d2db43b0a0d3e029c4c \n", "mixHash 0x294e8047712619a370ea19ff5a4a16cd6516f508bcd8... \n", "nonce 0x12b95eb00f016147 \n", "number 0xc93e27 \n", "parentHash 0xe8bf0a48d5df068791f30aa3e5a51a512a6e6d33ad8d... \n", "receiptsRoot 0x18eec39ae671cdae2d92f3cdc0e1cb873eb20cd5265f... \n", "sha3Uncles 0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a... \n", "size 0x1e409 \n", "stateRoot 0xf0c8a65fc4d8913f249ab6c3269f4f14a893822f58f1... \n", "timestamp 0x6139650f \n", "totalDifficulty 0x66ac2eb3acc46c324f5 \n", "transactions [{'blockHash': '0x39d5dd282cb927a8a4d48067753d... \n", "transactionsRoot 0x980df7fe6c8beb9bfab65e6414a490dce743e9b55e93... \n", "uncles [] \n", "\n", " 13088500 \n", "baseFeePerGas 0x1355623da4 \n", "difficulty 0x1cb13c9b887d19 \n", "extraData 0x486976656f6e2063612d68656176792068734541 \n", "gasLimit 0x1c9c380 \n", "gasUsed 0xa325ef \n", "hash 0x94fbba5b586bb7b9790fc5300f9fc3ecad1d4f5d1c94... \n", "logsBloom 0x78bd33838112301d69e010cca0029a8108b0975a0084... \n", "miner 0x1ad91ee08f21be3de0ba2ba6918e714da6b45836 \n", "mixHash 0x9f9143206f0c1e3ea0ced8be5c2fd55b5a5609503bd9... \n", "nonce 0xacfd53f2a607601b \n", "number 0xc7b6f4 \n", "parentHash 0x6adc782254d0d211cb7260fdf921649ee990a5309d0d... \n", "receiptsRoot 0x243cb4383ddaf0b8fee03763efb69a0102e489cd6689... \n", "sha3Uncles 0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a... \n", "size 0xb1a1 \n", "stateRoot 0xe88177015f6ef1601cda322d8830f308b33890250802... \n", "timestamp 0x6124fe52 \n", "totalDifficulty 0x63cd38d475da8174737 \n", "transactions [{'blockHash': '0x94fbba5b586bb7b9790fc5300f9f... \n", "transactionsRoot 0x93fb6db0b7354678be1b08a4769a65875d77fef756c6... \n", "uncles [] " ] }, "execution_count": 25, "metadata": {}, "output_type": "execute_result" } ], "source": [ "eth_block = es.get_eth_block(blocks)\n", "time.sleep(1)\n", "eth_block" ] }, { "cell_type": "markdown", "id": "0df20323", "metadata": {}, "source": [ "### get_eth_uncle" ] }, { "cell_type": "markdown", "id": "ee40943f", "metadata": {}, "source": [ "Returns information about a uncle by block number and index" ] }, { "cell_type": "code", "execution_count": 6, "id": "9741c92d", "metadata": {}, "outputs": [], "source": [ "uncle = es.get_eth_uncle(100, 0)\n", "time.sleep(1)\n", "uncle" ] }, { "cell_type": "markdown", "id": "626496b9", "metadata": {}, "source": [ "### get_eth_block_transaction_count" ] }, { "cell_type": "markdown", "id": "7a48c4c7", "metadata": {}, "source": [ "Returns the number of transactions in a block" ] }, { "cell_type": "code", "execution_count": 27, "id": "887b033a", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
transaction_count
0xc93e27275
0xc7b6f4193
\n", "
" ], "text/plain": [ " transaction_count\n", "0xc93e27 275\n", "0xc7b6f4 193" ] }, "execution_count": 27, "metadata": {}, "output_type": "execute_result" } ], "source": [ "block_transaction_count = es.get_eth_block_transaction_count(blocks)\n", "time.sleep(1)\n", "block_transaction_count" ] }, { "cell_type": "markdown", "id": "e56126ba", "metadata": {}, "source": [ "### get_eth_transaction_by_hash" ] }, { "cell_type": "markdown", "id": "3fa4a17f", "metadata": {}, "source": [ "Returns the information about a transaction requested by transaction hash" ] }, { "cell_type": "code", "execution_count": 28, "id": "4a54b8f7", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
0x29f2df8ce6a0e2a93bddacdfcceb9fd847630dcd1d25ad1ec3402cc449fa1eb60x0bd7f9af4f8ddb18a321ab0120a2389046b39feb67561d17378e0d4dc062decc0x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787e341eea230614e49ff61
blockHash0xe3bfc6bb26456cc452d15fe2de6ed3931e9a0fa289dd...0xc26af31bcee63e11ae42d069b407f2813a7cea39669e...0x3ee98c172be82e1389c92f31124b5bda97e13cf4471b...
blockNumber0xd091830xbd338a0xbe978e
from0xba19bdff99065d9abf3df8ce942390b97fd71b120xba19bdff99065d9abf3df8ce942390b97fd71b120xba19bdff99065d9abf3df8ce942390b97fd71b12
gas0x209830x72abd0x71541
gasPrice0x1b348f74bf0x14419aa6000x3286353a00
maxFeePerGas0x205185d7dfNaNNaN
maxPriorityFeePerGas0x59682f00NaNNaN
hash0x29f2df8ce6a0e2a93bddacdfcceb9fd847630dcd1d25...0x0bd7f9af4f8ddb18a321ab0120a2389046b39feb6756...0x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787...
input0x3015a5b5000000000000000000000000ba19bdff9906...0x415565b00000000000000000000000001f9840a85d5a...0xf6216495000000000000000000000000dcd90c7f6324...
nonce0xd40x680x79
to0xd569d3cce55b71a8a3f3c418c329a66e5f7144310xdef1c0ded9bec7f1a1670819833240f027b25eff0xc5b49abf8b164472be9486767af6b1a5586b5609
transactionIndex0xea0x860x28
value0x00x00x0
type0x20x00x0
accessList[]NaNNaN
chainId0x1NaNNaN
v0x10x250x26
r0xc903a46590ec28f688f32855702ce4ba93dc41abfea7...0x18faa03917f1f7933e61e1d18468ff06c661e315d866...0x94567659a313430951a53d93a218259e6f556964e012...
s0x8112d963da3427e774f159e86dba2284af135f35fbcd...0x58d5808e701496ee978b9c5801f49e76199dfda12a44...0x5f20b4c0fe585feb938907cdcc1ef7faf6dad65b0f73...
\n", "
" ], "text/plain": [ " 0x29f2df8ce6a0e2a93bddacdfcceb9fd847630dcd1d25ad1ec3402cc449fa1eb6 \\\n", "blockHash 0xe3bfc6bb26456cc452d15fe2de6ed3931e9a0fa289dd... \n", "blockNumber 0xd09183 \n", "from 0xba19bdff99065d9abf3df8ce942390b97fd71b12 \n", "gas 0x20983 \n", "gasPrice 0x1b348f74bf \n", "maxFeePerGas 0x205185d7df \n", "maxPriorityFeePerGas 0x59682f00 \n", "hash 0x29f2df8ce6a0e2a93bddacdfcceb9fd847630dcd1d25... \n", "input 0x3015a5b5000000000000000000000000ba19bdff9906... \n", "nonce 0xd4 \n", "to 0xd569d3cce55b71a8a3f3c418c329a66e5f714431 \n", "transactionIndex 0xea \n", "value 0x0 \n", "type 0x2 \n", "accessList [] \n", "chainId 0x1 \n", "v 0x1 \n", "r 0xc903a46590ec28f688f32855702ce4ba93dc41abfea7... \n", "s 0x8112d963da3427e774f159e86dba2284af135f35fbcd... \n", "\n", " 0x0bd7f9af4f8ddb18a321ab0120a2389046b39feb67561d17378e0d4dc062decc \\\n", "blockHash 0xc26af31bcee63e11ae42d069b407f2813a7cea39669e... \n", "blockNumber 0xbd338a \n", "from 0xba19bdff99065d9abf3df8ce942390b97fd71b12 \n", "gas 0x72abd \n", "gasPrice 0x14419aa600 \n", "maxFeePerGas NaN \n", "maxPriorityFeePerGas NaN \n", "hash 0x0bd7f9af4f8ddb18a321ab0120a2389046b39feb6756... \n", "input 0x415565b00000000000000000000000001f9840a85d5a... \n", "nonce 0x68 \n", "to 0xdef1c0ded9bec7f1a1670819833240f027b25eff \n", "transactionIndex 0x86 \n", "value 0x0 \n", "type 0x0 \n", "accessList NaN \n", "chainId NaN \n", "v 0x25 \n", "r 0x18faa03917f1f7933e61e1d18468ff06c661e315d866... \n", "s 0x58d5808e701496ee978b9c5801f49e76199dfda12a44... \n", "\n", " 0x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787e341eea230614e49ff61 \n", "blockHash 0x3ee98c172be82e1389c92f31124b5bda97e13cf4471b... \n", "blockNumber 0xbe978e \n", "from 0xba19bdff99065d9abf3df8ce942390b97fd71b12 \n", "gas 0x71541 \n", "gasPrice 0x3286353a00 \n", "maxFeePerGas NaN \n", "maxPriorityFeePerGas NaN \n", "hash 0x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787... \n", "input 0xf6216495000000000000000000000000dcd90c7f6324... \n", "nonce 0x79 \n", "to 0xc5b49abf8b164472be9486767af6b1a5586b5609 \n", "transactionIndex 0x28 \n", "value 0x0 \n", "type 0x0 \n", "accessList NaN \n", "chainId NaN \n", "v 0x26 \n", "r 0x94567659a313430951a53d93a218259e6f556964e012... \n", "s 0x5f20b4c0fe585feb938907cdcc1ef7faf6dad65b0f73... " ] }, "execution_count": 28, "metadata": {}, "output_type": "execute_result" } ], "source": [ "txns_by_hash = es.get_eth_transaction_by_hash(txns)\n", "time.sleep(1)\n", "txns_by_hash" ] }, { "cell_type": "markdown", "id": "0b0c2e5e", "metadata": {}, "source": [ "### get_eth_transaction_by_block_index" ] }, { "cell_type": "markdown", "id": "4364cd38", "metadata": {}, "source": [ "Returns information about a transaction by block number and transaction index position" ] }, { "cell_type": "code", "execution_count": 29, "id": "44fa9686", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
transaction_info
blockHash0x39d5dd282cb927a8a4d48067753d65d4e94cf91f161d...
blockNumber0xc93e27
from0xa06c0c2b2ce1918a148e5c6ea9f32a374ef44ba8
gas0x5208
gasPrice0x22ecb25c00
hash0xc340f61db160cba7c5052b8e48672848d204fe8e3d1f...
input0x
nonce0x4f7
to0x398226801b7f0fd8c3c846b7d99ccdc4298dc2f6
transactionIndex0x0
value0x6f05b59d3b20000
type0x0
v0x26
r0xda78de4032212d9b2f660e5bc7922e345d7f413768d3...
s0x7cc3f475382011d09f74c733e5845ee74716e7a7c0ea...
\n", "
" ], "text/plain": [ " transaction_info\n", "blockHash 0x39d5dd282cb927a8a4d48067753d65d4e94cf91f161d...\n", "blockNumber 0xc93e27\n", "from 0xa06c0c2b2ce1918a148e5c6ea9f32a374ef44ba8\n", "gas 0x5208\n", "gasPrice 0x22ecb25c00\n", "hash 0xc340f61db160cba7c5052b8e48672848d204fe8e3d1f...\n", "input 0x\n", "nonce 0x4f7\n", "to 0x398226801b7f0fd8c3c846b7d99ccdc4298dc2f6\n", "transactionIndex 0x0\n", "value 0x6f05b59d3b20000\n", "type 0x0\n", "v 0x26\n", "r 0xda78de4032212d9b2f660e5bc7922e345d7f413768d3...\n", "s 0x7cc3f475382011d09f74c733e5845ee74716e7a7c0ea..." ] }, "execution_count": 29, "metadata": {}, "output_type": "execute_result" } ], "source": [ "txn_info = es.get_eth_transaction_by_block_index(blocks[0], index)\n", "time.sleep(1)\n", "txn_info" ] }, { "cell_type": "markdown", "id": "65483030", "metadata": {}, "source": [ "### get_eth_account_transaction_count" ] }, { "cell_type": "markdown", "id": "67b2edbc", "metadata": {}, "source": [ "Returns the number of transactions performed by an address" ] }, { "cell_type": "code", "execution_count": 30, "id": "824bc485", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
transaction_count
0xBa19BdFF99065d9ABF3dF8CE942390B97fd71B12213
0x503e4bfe8299D486701BC7bc7F2Ea94f50035daC70
\n", "
" ], "text/plain": [ " transaction_count\n", "0xBa19BdFF99065d9ABF3dF8CE942390B97fd71B12 213\n", "0x503e4bfe8299D486701BC7bc7F2Ea94f50035daC 70" ] }, "execution_count": 30, "metadata": {}, "output_type": "execute_result" } ], "source": [ "transaction_count = es.get_eth_account_transaction_count(accounts)\n", "time.sleep(1)\n", "transaction_count" ] }, { "cell_type": "markdown", "id": "791ad753", "metadata": {}, "source": [ "### get_eth_transaction_receipt" ] }, { "cell_type": "markdown", "id": "987a432c", "metadata": {}, "source": [ "Returns the receipt of a transaction by transaction hash" ] }, { "cell_type": "code", "execution_count": 31, "id": "020ad39e", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
0x29f2df8ce6a0e2a93bddacdfcceb9fd847630dcd1d25ad1ec3402cc449fa1eb6...0x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787e341eea230614e49ff61
blockHashblockNumbercontractAddresscumulativeGasUsedeffectiveGasPricefromgasUsedlogslogsBloomstatus...effectiveGasPricefromgasUsedlogslogsBloomstatustotransactionHashtransactionIndextype
00xe3bfc6bb26456cc452d15fe2de6ed3931e9a0fa289dd...0xd09183None0x137614c0x1b348f74bf0xba19bdff99065d9abf3df8ce942390b97fd71b120x1e384{'address': '0xee2ebccb7cdb34a8a822b589f9e8427...0x00000000000000000000000000000000040000000000...0x1...0x3286353a000xba19bdff99065d9abf3df8ce942390b97fd71b120x495ba{'address': '0xdcd90c7f6324cfa40d7169ef80b1203...0x00000000000000000000000000000002000000000000...0x10xc5b49abf8b164472be9486767af6b1a5586b56090x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787...0x280x0
10xe3bfc6bb26456cc452d15fe2de6ed3931e9a0fa289dd...0xd09183None0x137614c0x1b348f74bf0xba19bdff99065d9abf3df8ce942390b97fd71b120x1e384{'address': '0xd569d3cce55b71a8a3f3c418c329a66...0x00000000000000000000000000000000040000000000...0x1...0x3286353a000xba19bdff99065d9abf3df8ce942390b97fd71b120x495ba{'address': '0xdcd90c7f6324cfa40d7169ef80b1203...0x00000000000000000000000000000002000000000000...0x10xc5b49abf8b164472be9486767af6b1a5586b56090x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787...0x280x0
2NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN...0x3286353a000xba19bdff99065d9abf3df8ce942390b97fd71b120x495ba{'address': '0xdcd90c7f6324cfa40d7169ef80b1203...0x00000000000000000000000000000002000000000000...0x10xc5b49abf8b164472be9486767af6b1a5586b56090x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787...0x280x0
3NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN...0x3286353a000xba19bdff99065d9abf3df8ce942390b97fd71b120x495ba{'address': '0x06325440d014e39736583c165c2963b...0x00000000000000000000000000000002000000000000...0x10xc5b49abf8b164472be9486767af6b1a5586b56090x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787...0x280x0
4NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN...0x3286353a000xba19bdff99065d9abf3df8ce942390b97fd71b120x495ba{'address': '0x06325440d014e39736583c165c2963b...0x00000000000000000000000000000002000000000000...0x10xc5b49abf8b164472be9486767af6b1a5586b56090x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787...0x280x0
5NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN...0x3286353a000xba19bdff99065d9abf3df8ce942390b97fd71b120x495ba{'address': '0x06325440d014e39736583c165c2963b...0x00000000000000000000000000000002000000000000...0x10xc5b49abf8b164472be9486767af6b1a5586b56090x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787...0x280x0
6NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN...0x3286353a000xba19bdff99065d9abf3df8ce942390b97fd71b120x495ba{'address': '0x06325440d014e39736583c165c2963b...0x00000000000000000000000000000002000000000000...0x10xc5b49abf8b164472be9486767af6b1a5586b56090x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787...0x280x0
7NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN...0x3286353a000xba19bdff99065d9abf3df8ce942390b97fd71b120x495ba{'address': '0x06325440d014e39736583c165c2963b...0x00000000000000000000000000000002000000000000...0x10xc5b49abf8b164472be9486767af6b1a5586b56090x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787...0x280x0
8NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN...0x3286353a000xba19bdff99065d9abf3df8ce942390b97fd71b120x495ba{'address': '0xdc24316b9ae028f1497c275eb9192a3...0x00000000000000000000000000000002000000000000...0x10xc5b49abf8b164472be9486767af6b1a5586b56090x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787...0x280x0
9NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN...0x3286353a000xba19bdff99065d9abf3df8ce942390b97fd71b120x495ba{'address': '0x4ae9e68bd76eba868be20376eea343e...0x00000000000000000000000000000002000000000000...0x10xc5b49abf8b164472be9486767af6b1a5586b56090x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787...0x280x0
10NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
11NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
\n", "

12 rows × 42 columns

\n", "
" ], "text/plain": [ " 0x29f2df8ce6a0e2a93bddacdfcceb9fd847630dcd1d25ad1ec3402cc449fa1eb6 \\\n", " blockHash \n", "0 0xe3bfc6bb26456cc452d15fe2de6ed3931e9a0fa289dd... \n", "1 0xe3bfc6bb26456cc452d15fe2de6ed3931e9a0fa289dd... \n", "2 NaN \n", "3 NaN \n", "4 NaN \n", "5 NaN \n", "6 NaN \n", "7 NaN \n", "8 NaN \n", "9 NaN \n", "10 NaN \n", "11 NaN \n", "\n", " \\\n", " blockNumber contractAddress cumulativeGasUsed effectiveGasPrice \n", "0 0xd09183 None 0x137614c 0x1b348f74bf \n", "1 0xd09183 None 0x137614c 0x1b348f74bf \n", "2 NaN NaN NaN NaN \n", "3 NaN NaN NaN NaN \n", "4 NaN NaN NaN NaN \n", "5 NaN NaN NaN NaN \n", "6 NaN NaN NaN NaN \n", "7 NaN NaN NaN NaN \n", "8 NaN NaN NaN NaN \n", "9 NaN NaN NaN NaN \n", "10 NaN NaN NaN NaN \n", "11 NaN NaN NaN NaN \n", "\n", " \\\n", " from gasUsed \n", "0 0xba19bdff99065d9abf3df8ce942390b97fd71b12 0x1e384 \n", "1 0xba19bdff99065d9abf3df8ce942390b97fd71b12 0x1e384 \n", "2 NaN NaN \n", "3 NaN NaN \n", "4 NaN NaN \n", "5 NaN NaN \n", "6 NaN NaN \n", "7 NaN NaN \n", "8 NaN NaN \n", "9 NaN NaN \n", "10 NaN NaN \n", "11 NaN NaN \n", "\n", " \\\n", " logs \n", "0 {'address': '0xee2ebccb7cdb34a8a822b589f9e8427... \n", "1 {'address': '0xd569d3cce55b71a8a3f3c418c329a66... \n", "2 NaN \n", "3 NaN \n", "4 NaN \n", "5 NaN \n", "6 NaN \n", "7 NaN \n", "8 NaN \n", "9 NaN \n", "10 NaN \n", "11 NaN \n", "\n", " ... \\\n", " logsBloom status ... \n", "0 0x00000000000000000000000000000000040000000000... 0x1 ... \n", "1 0x00000000000000000000000000000000040000000000... 0x1 ... \n", "2 NaN NaN ... \n", "3 NaN NaN ... \n", "4 NaN NaN ... \n", "5 NaN NaN ... \n", "6 NaN NaN ... \n", "7 NaN NaN ... \n", "8 NaN NaN ... \n", "9 NaN NaN ... \n", "10 NaN NaN ... \n", "11 NaN NaN ... \n", "\n", " 0x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787e341eea230614e49ff61 \\\n", " effectiveGasPrice \n", "0 0x3286353a00 \n", "1 0x3286353a00 \n", "2 0x3286353a00 \n", "3 0x3286353a00 \n", "4 0x3286353a00 \n", "5 0x3286353a00 \n", "6 0x3286353a00 \n", "7 0x3286353a00 \n", "8 0x3286353a00 \n", "9 0x3286353a00 \n", "10 NaN \n", "11 NaN \n", "\n", " \\\n", " from gasUsed \n", "0 0xba19bdff99065d9abf3df8ce942390b97fd71b12 0x495ba \n", "1 0xba19bdff99065d9abf3df8ce942390b97fd71b12 0x495ba \n", "2 0xba19bdff99065d9abf3df8ce942390b97fd71b12 0x495ba \n", "3 0xba19bdff99065d9abf3df8ce942390b97fd71b12 0x495ba \n", "4 0xba19bdff99065d9abf3df8ce942390b97fd71b12 0x495ba \n", "5 0xba19bdff99065d9abf3df8ce942390b97fd71b12 0x495ba \n", "6 0xba19bdff99065d9abf3df8ce942390b97fd71b12 0x495ba \n", "7 0xba19bdff99065d9abf3df8ce942390b97fd71b12 0x495ba \n", "8 0xba19bdff99065d9abf3df8ce942390b97fd71b12 0x495ba \n", "9 0xba19bdff99065d9abf3df8ce942390b97fd71b12 0x495ba \n", "10 NaN NaN \n", "11 NaN NaN \n", "\n", " \\\n", " logs \n", "0 {'address': '0xdcd90c7f6324cfa40d7169ef80b1203... \n", "1 {'address': '0xdcd90c7f6324cfa40d7169ef80b1203... \n", "2 {'address': '0xdcd90c7f6324cfa40d7169ef80b1203... \n", "3 {'address': '0x06325440d014e39736583c165c2963b... \n", "4 {'address': '0x06325440d014e39736583c165c2963b... \n", "5 {'address': '0x06325440d014e39736583c165c2963b... \n", "6 {'address': '0x06325440d014e39736583c165c2963b... \n", "7 {'address': '0x06325440d014e39736583c165c2963b... \n", "8 {'address': '0xdc24316b9ae028f1497c275eb9192a3... \n", "9 {'address': '0x4ae9e68bd76eba868be20376eea343e... \n", "10 NaN \n", "11 NaN \n", "\n", " \\\n", " logsBloom status \n", "0 0x00000000000000000000000000000002000000000000... 0x1 \n", "1 0x00000000000000000000000000000002000000000000... 0x1 \n", "2 0x00000000000000000000000000000002000000000000... 0x1 \n", "3 0x00000000000000000000000000000002000000000000... 0x1 \n", "4 0x00000000000000000000000000000002000000000000... 0x1 \n", "5 0x00000000000000000000000000000002000000000000... 0x1 \n", "6 0x00000000000000000000000000000002000000000000... 0x1 \n", "7 0x00000000000000000000000000000002000000000000... 0x1 \n", "8 0x00000000000000000000000000000002000000000000... 0x1 \n", "9 0x00000000000000000000000000000002000000000000... 0x1 \n", "10 NaN NaN \n", "11 NaN NaN \n", "\n", " \\\n", " to \n", "0 0xc5b49abf8b164472be9486767af6b1a5586b5609 \n", "1 0xc5b49abf8b164472be9486767af6b1a5586b5609 \n", "2 0xc5b49abf8b164472be9486767af6b1a5586b5609 \n", "3 0xc5b49abf8b164472be9486767af6b1a5586b5609 \n", "4 0xc5b49abf8b164472be9486767af6b1a5586b5609 \n", "5 0xc5b49abf8b164472be9486767af6b1a5586b5609 \n", "6 0xc5b49abf8b164472be9486767af6b1a5586b5609 \n", "7 0xc5b49abf8b164472be9486767af6b1a5586b5609 \n", "8 0xc5b49abf8b164472be9486767af6b1a5586b5609 \n", "9 0xc5b49abf8b164472be9486767af6b1a5586b5609 \n", "10 NaN \n", "11 NaN \n", "\n", " \n", " transactionHash transactionIndex type \n", "0 0x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787... 0x28 0x0 \n", "1 0x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787... 0x28 0x0 \n", "2 0x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787... 0x28 0x0 \n", "3 0x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787... 0x28 0x0 \n", "4 0x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787... 0x28 0x0 \n", "5 0x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787... 0x28 0x0 \n", "6 0x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787... 0x28 0x0 \n", "7 0x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787... 0x28 0x0 \n", "8 0x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787... 0x28 0x0 \n", "9 0x1815a03dd8a1ce7da5a7a4304fa5fae1a8f4f3c20787... 0x28 0x0 \n", "10 NaN NaN NaN \n", "11 NaN NaN NaN \n", "\n", "[12 rows x 42 columns]" ] }, "execution_count": 31, "metadata": {}, "output_type": "execute_result" } ], "source": [ "receipts = es.get_eth_transaction_receipt(txns)\n", "time.sleep(1)\n", "receipts" ] }, { "cell_type": "markdown", "id": "1b03f7fc", "metadata": {}, "source": [ "### get_eth_gas_price" ] }, { "cell_type": "markdown", "id": "55ac2f35", "metadata": {}, "source": [ "Returns the current price per gas in wei" ] }, { "cell_type": "code", "execution_count": 32, "id": "eea2117e", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "63488530079" ] }, "execution_count": 32, "metadata": {}, "output_type": "execute_result" } ], "source": [ "gas_price = es.get_eth_gas_price()\n", "time.sleep(1)\n", "gas_price" ] }, { "cell_type": "markdown", "id": "8f988608", "metadata": {}, "source": [ "## Tokens" ] }, { "cell_type": "markdown", "id": "37a4d873", "metadata": {}, "source": [ "Functions to return information about tokens" ] }, { "cell_type": "code", "execution_count": 33, "id": "e4c19ba2", "metadata": {}, "outputs": [], "source": [ "#pickle, xSushi\n", "tokens = ['0x429881672B9AE42b8EbA0E26cD9C73711b891Ca5', '0x8798249c2E607446EfB7Ad49eC89dD1865Ff4272']\n", "# One account w/ the above tokens, one account w/out the above tokens\n", "accounts = ['0xBa19BdFF99065d9ABF3dF8CE942390B97fd71B12', '0x503e4bfe8299D486701BC7bc7F2Ea94f50035daC']" ] }, { "cell_type": "markdown", "id": "a7f692c3", "metadata": {}, "source": [ "### get_token_total_supply" ] }, { "cell_type": "markdown", "id": "2f36afcf", "metadata": {}, "source": [ "Returns the current amount of an ERC-20 token(s) in circulation\n", "\n", "NOTE: supply is not adjusted for decimals of token(s)" ] }, { "cell_type": "code", "execution_count": 34, "id": "3d7c39b0", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
supply
0x429881672B9AE42b8EbA0E26cD9C73711b891Ca51848976414779307269364005
0x8798249c2E607446EfB7Ad49eC89dD1865Ff427253738914806120315201730649
\n", "
" ], "text/plain": [ " supply\n", "0x429881672B9AE42b8EbA0E26cD9C73711b891Ca5 1848976414779307269364005\n", "0x8798249c2E607446EfB7Ad49eC89dD1865Ff4272 53738914806120315201730649" ] }, "execution_count": 34, "metadata": {}, "output_type": "execute_result" } ], "source": [ "total_supply = es.get_token_total_supply(tokens)\n", "time.sleep(1)\n", "total_supply" ] }, { "cell_type": "markdown", "id": "8e753ae9", "metadata": {}, "source": [ "### get_token_account_balance" ] }, { "cell_type": "markdown", "id": "409a77de", "metadata": {}, "source": [ "Returns the current balance of an ERC-20 token(s) of an address(es).\n", "\n", "NOTE: balance is not adjusted for decimals of token(s)" ] }, { "cell_type": "code", "execution_count": 35, "id": "6c01c5bf", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
0xBa19BdFF99065d9ABF3dF8CE942390B97fd71B120x503e4bfe8299D486701BC7bc7F2Ea94f50035daC
0x429881672B9AE42b8EbA0E26cD9C73711b891Ca530322979532810474680
0x8798249c2E607446EfB7Ad49eC89dD1865Ff427218983593310779653120
\n", "
" ], "text/plain": [ " 0xBa19BdFF99065d9ABF3dF8CE942390B97fd71B12 \\\n", "0x429881672B9AE42b8EbA0E26cD9C73711b891Ca5 3032297953281047468 \n", "0x8798249c2E607446EfB7Ad49eC89dD1865Ff4272 1898359331077965312 \n", "\n", " 0x503e4bfe8299D486701BC7bc7F2Ea94f50035daC \n", "0x429881672B9AE42b8EbA0E26cD9C73711b891Ca5 0 \n", "0x8798249c2E607446EfB7Ad49eC89dD1865Ff4272 0 " ] }, "execution_count": 35, "metadata": {}, "output_type": "execute_result" } ], "source": [ "account_balance = es.get_token_account_balance(tokens, accounts)\n", "time.sleep(1)\n", "account_balance" ] }, { "cell_type": "markdown", "id": "1f697e32", "metadata": {}, "source": [ "## Gas Tracker" ] }, { "cell_type": "markdown", "id": "8e45aa90", "metadata": {}, "source": [ "Functions to return information about gas" ] }, { "cell_type": "code", "execution_count": 36, "id": "2e6703d3", "metadata": {}, "outputs": [], "source": [ "gas_price_wei=2000000000" ] }, { "cell_type": "markdown", "id": "509b156f", "metadata": {}, "source": [ "### get_est_confirmation" ] }, { "cell_type": "markdown", "id": "193395c4", "metadata": {}, "source": [ "Returns the estimated time, in seconds, for a transaction to be confirmed on the blockchain gas price in wei" ] }, { "cell_type": "code", "execution_count": 37, "id": "e98dae6a", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "'3615'" ] }, "execution_count": 37, "metadata": {}, "output_type": "execute_result" } ], "source": [ "est_confirmation = es.get_est_confirmation(gas_price_wei)\n", "time.sleep(1)\n", "est_confirmation" ] }, { "cell_type": "markdown", "id": "29f39611", "metadata": {}, "source": [ "### get_gas_oracle" ] }, { "cell_type": "markdown", "id": "3bc8ef92", "metadata": {}, "source": [ "Returns the current Safe, Proposed and Fast gas prices" ] }, { "cell_type": "code", "execution_count": 38, "id": "dd28adde", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
gas_oracle
LastBlock13761570
SafeGasPrice71
ProposeGasPrice71
FastGasPrice71
suggestBaseFee70.125539676
gasUsedRatio0.673301292438634,0.390934289089044,0.16035321...
\n", "
" ], "text/plain": [ " gas_oracle\n", "LastBlock 13761570\n", "SafeGasPrice 71\n", "ProposeGasPrice 71\n", "FastGasPrice 71\n", "suggestBaseFee 70.125539676\n", "gasUsedRatio 0.673301292438634,0.390934289089044,0.16035321..." ] }, "execution_count": 38, "metadata": {}, "output_type": "execute_result" } ], "source": [ "gas_oracle = es.get_gas_oracle()\n", "time.sleep(1)\n", "gas_oracle" ] }, { "cell_type": "markdown", "id": "21a451a3", "metadata": {}, "source": [ "## Stats" ] }, { "cell_type": "markdown", "id": "6c03ded4", "metadata": {}, "source": [ "Functions to return statistics supported by Etherscan" ] }, { "cell_type": "code", "execution_count": 39, "id": "e0aac208", "metadata": {}, "outputs": [], "source": [ "start_date='2021-01-01'\n", "end_date='2021-01-05'" ] }, { "cell_type": "markdown", "id": "d53815d4", "metadata": {}, "source": [ "### get_eth_total_supply" ] }, { "cell_type": "markdown", "id": "76a84fe7", "metadata": {}, "source": [ "Returns the current amount of Ether in circulation" ] }, { "cell_type": "code", "execution_count": 40, "id": "62d8d14f", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "'118647896311500000000000000'" ] }, "execution_count": 40, "metadata": {}, "output_type": "execute_result" } ], "source": [ "total_eth_supply = es.get_total_eth_supply()\n", "time.sleep(1)\n", "total_eth_supply" ] }, { "cell_type": "markdown", "id": "f95835ff", "metadata": {}, "source": [ "### get_eth2_total_supply" ] }, { "cell_type": "markdown", "id": "36065c7f", "metadata": {}, "source": [ "Returns the current amount of Ether in circulation, ETH2 Staking rewards and EIP1559 burnt fees statistics" ] }, { "cell_type": "code", "execution_count": 41, "id": "acbcb54e", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
eth2_supply
EthSupply118647896311500000000000000
Eth2Staking352534008030225000000000
BurntFees1133291322548617997182297
\n", "
" ], "text/plain": [ " eth2_supply\n", "EthSupply 118647896311500000000000000\n", "Eth2Staking 352534008030225000000000\n", "BurntFees 1133291322548617997182297" ] }, "execution_count": 41, "metadata": {}, "output_type": "execute_result" } ], "source": [ "total_eth2_supply = es.get_total_eth2_supply()\n", "time.sleep(1)\n", "total_eth2_supply" ] }, { "cell_type": "markdown", "id": "567d3368", "metadata": {}, "source": [ "### get_last_eth_price" ] }, { "cell_type": "markdown", "id": "6b96e081", "metadata": {}, "source": [ "Returns the latest price of 1 ETH in BTC & USD" ] }, { "cell_type": "code", "execution_count": 42, "id": "d6af4fc9", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
eth_price
btc0.08512
usd4309.29
\n", "
" ], "text/plain": [ " eth_price\n", "btc 0.08512\n", "usd 4309.29" ] }, "execution_count": 42, "metadata": {}, "output_type": "execute_result" } ], "source": [ "last_eth_price = es.get_last_eth_price()\n", "time.sleep(1)\n", "last_eth_price" ] }, { "cell_type": "markdown", "id": "d605a91f", "metadata": {}, "source": [ "### get_nodes_size" ] }, { "cell_type": "markdown", "id": "a0c013f4", "metadata": {}, "source": [ "Returns the size of the Ethereum blockchain, in bytes, over a date range" ] }, { "cell_type": "code", "execution_count": 43, "id": "98aa36c6", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
blockNumberchainTimeStampchainSizeclientTypesyncMode
0115650642021-01-016451682486621GethArchive
1115716112021-01-026458928956583GethArchive
2115782012021-01-036469047014437GethArchive
3115846822021-01-046476583029570GethArchive
4115912012021-01-056486626025242GethArchive
\n", "
" ], "text/plain": [ " blockNumber chainTimeStamp chainSize clientType syncMode\n", "0 11565064 2021-01-01 6451682486621 Geth Archive\n", "1 11571611 2021-01-02 6458928956583 Geth Archive\n", "2 11578201 2021-01-03 6469047014437 Geth Archive\n", "3 11584682 2021-01-04 6476583029570 Geth Archive\n", "4 11591201 2021-01-05 6486626025242 Geth Archive" ] }, "execution_count": 43, "metadata": {}, "output_type": "execute_result" } ], "source": [ "nodes_size = es.get_nodes_size(start_date=start_date, end_date=end_date)\n", "time.sleep(1)\n", "nodes_size" ] }, { "cell_type": "markdown", "id": "644bdbfa", "metadata": {}, "source": [ "### get_total_nodes_count" ] }, { "cell_type": "markdown", "id": "7460e6ec", "metadata": {}, "source": [ "Returns the total number of discoverable Ethereum nodes" ] }, { "cell_type": "code", "execution_count": 44, "id": "368a4026", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "'2543'" ] }, "execution_count": 44, "metadata": {}, "output_type": "execute_result" } ], "source": [ "total_nodes_count = es.get_total_nodes_count()\n", "time.sleep(1)\n", "total_nodes_count" ] }, { "cell_type": "code", "execution_count": null, "id": "9569c9ae", "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.9.9" } }, "nbformat": 4, "nbformat_minor": 5 }